In [1]:
import pandas as pd
import numpy as np

# Options for pandas
pd.options.display.max_columns = None
pd.options.display.max_rows = None

pd.options.display.max_colwidth=-1

# Display all cell outputs
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = 'all'

from IPython import get_ipython
ipython = get_ipython()

# autoreload extension
if 'autoreload' not in ipython.extension_manager.loaded:
    %load_ext autoreload

%autoreload 2

# Visualizations
import matplotlib.pyplot as plt
import seaborn as sns
import spacy

import re
In [2]:
## !pip install spacy
In [3]:
%pwd
Out[3]:
'C:\\Users\\Sonali MJ\\Documents\\Python Scripts\\Social media analytics'
In [4]:
df=pd.read_csv("amazon_webscraping_hp_laptop.csv")
In [5]:
df.head()
Out[5]:
Reviews
0 There is no sound in the laptop even after installing necessary drives.Please suggest solution otherwise I will return the item.\n
1 Amazon showing wrong pictures, the keyboard will also have silver colorIf anyone read this review to buy this laptop, it might be useful\n
2 I would request customers who have brought items on EMI through SBI card pleasr check your statement details as I had brought this prouduct on EMI of 9666/- including interest but bank is charging additional interest on this. 9666 + 330. Actually if they had to charge then they should have charged either 9666 per month or 9444+interest for three month. I would request Amazon also to look into the matter so that customers can freely use SBI cards for EMI payment.\n
3 I'm reviewing this laptop after 4 month of use.Pros:- Overall looks seems interesting.- Screen size and display is awesome.- 3 USB ports, 1 HDMI, 1 RJ45 connector, USB 3.5 JACK, SD card slot, CD Rom.- With Intel i3 7th gen this laptop works fine with all applications and browsing experience is too good.Cons:- You need to wait a minute after starting this laptop to be able to work. Else, it starts to hang.- Full size keyboard. The numeric buttons on the right should not be present.Overall verdict:Decent laptop at this price.\n
4 Let me start with my message stating Very unsatisfactory product. It is i3 7th gen with 4gb Ram but it is slower than a celeron processor my other laptop. Infact cant be compared as simple basic task like sending mail cant work in this laptop forget the gaming etc. VERY VERY SLOW . 100% memory and 100 % DISK usage show all the time in if u open task manager.I mailed HP looking at the messages from HP from other reviews. It seemed to be quite promising that someone from HP customer care will take the laptop solve it or replace it sad thing no one even bothered to reply to my mail.So sick HP service.\n

import nltk for printing stop words and also to perform stemming

In [6]:
import nltk
nltk.download('stopwords')
import string
from nltk.corpus import stopwords
from nltk import PorterStemmer as Stemmer
[nltk_data] Downloading package stopwords to C:\Users\Sonali
[nltk_data]     MJ\AppData\Roaming\nltk_data...
[nltk_data]   Package stopwords is already up-to-date!
Out[6]:
True

below function is used to printing the stopwords by spliting the reviews and also to print the clean_text from reviews

In [58]:
def clean_text(text):
    STOPWORDS=stopwords.words("english")
    test_doc_cleaned_list=[x for x in text if x not in string.punctuation]
    test_doc_cleaned="".join(test_doc_cleaned_list)
    test_doc_cleaned=test_doc_cleaned.lower()
    test_tokens=test_doc_cleaned.split(" ")
    test_toki=[i for i in test_tokens if i not in STOPWORDS]
    test_toki1=" ".join(test_toki)
    ps=Stemmer()
    test_top=test_toki1.split(" ")
    test_topp=[ps.stem(i) for i in test_top]
    test_toy=" ".join(test_topp)
    clean=re.sub(' +',' ',test_toy)
    return clean
In [8]:
df['clean_text']=df['Reviews'].apply(lambda x:clean_text(x))
In [9]:
df.head()
Out[9]:
Reviews clean_text
0 There is no sound in the laptop even after installing necessary drives.Please suggest solution otherwise I will return the item.\n sound laptop even instal necessari drivespleas suggest solut otherwis return item\n
1 Amazon showing wrong pictures, the keyboard will also have silver colorIf anyone read this review to buy this laptop, it might be useful\n amazon show wrong pictur keyboard also silver colorif anyon read review buy laptop might useful\n
2 I would request customers who have brought items on EMI through SBI card pleasr check your statement details as I had brought this prouduct on EMI of 9666/- including interest but bank is charging additional interest on this. 9666 + 330. Actually if they had to charge then they should have charged either 9666 per month or 9444+interest for three month. I would request Amazon also to look into the matter so that customers can freely use SBI cards for EMI payment.\n would request custom brought item emi sbi card pleasr check statement detail brought prouduct emi 9666 includ interest bank charg addit interest 9666 330 actual charg charg either 9666 per month 9444interest three month would request amazon also look matter custom freeli use sbi card emi payment\n
3 I'm reviewing this laptop after 4 month of use.Pros:- Overall looks seems interesting.- Screen size and display is awesome.- 3 USB ports, 1 HDMI, 1 RJ45 connector, USB 3.5 JACK, SD card slot, CD Rom.- With Intel i3 7th gen this laptop works fine with all applications and browsing experience is too good.Cons:- You need to wait a minute after starting this laptop to be able to work. Else, it starts to hang.- Full size keyboard. The numeric buttons on the right should not be present.Overall verdict:Decent laptop at this price.\n im review laptop 4 month usepro overal look seem interest screen size display awesom 3 usb port 1 hdmi 1 rj45 connector usb 35 jack sd card slot cd rom intel i3 7th gen laptop work fine applic brows experi goodcon need wait minut start laptop abl work els start hang full size keyboard numer button right presentoveral verdictdec laptop price\n
4 Let me start with my message stating Very unsatisfactory product. It is i3 7th gen with 4gb Ram but it is slower than a celeron processor my other laptop. Infact cant be compared as simple basic task like sending mail cant work in this laptop forget the gaming etc. VERY VERY SLOW . 100% memory and 100 % DISK usage show all the time in if u open task manager.I mailed HP looking at the messages from HP from other reviews. It seemed to be quite promising that someone from HP customer care will take the laptop solve it or replace it sad thing no one even bothered to reply to my mail.So sick HP service.\n let start messag state unsatisfactori product i3 7th gen 4gb ram slower celeron processor laptop infact cant compar simpl basic task like send mail cant work laptop forget game etc slow 100 memori 100 disk usag show time u open task manageri mail hp look messag hp review seem quit promis someon hp custom care take laptop solv replac sad thing one even bother repli mailso sick hp service\n
In [10]:
!pip install vaderSentiment
Requirement already satisfied: vaderSentiment in c:\users\sonali mj\anaconda3\lib\site-packages (3.2.1)

below function is used to print the ratings from clean_text and also it will shows the positive ,negative and neutral rating

In [11]:
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer 
  
def sentiment_scores(row): 
    sentence=row['clean_text']
  
  
    sid_obj = SentimentIntensityAnalyzer() 
   
    sentiment_dict = sid_obj.polarity_scores(sentence) 
      
    
    if sentiment_dict['compound'] >= 0.05 : 
        return("Positive") 
  
    elif sentiment_dict['compound'] <= - 0.05 : 
        return("Negative") 
  
    else : 
        return("Neutral") 
  
In [12]:
df['rating']=df.apply(lambda row :sentiment_scores(row),axis=1)
In [13]:
df.head()
Out[13]:
Reviews clean_text rating
0 There is no sound in the laptop even after installing necessary drives.Please suggest solution otherwise I will return the item.\n sound laptop even instal necessari drivespleas suggest solut otherwis return item\n Neutral
1 Amazon showing wrong pictures, the keyboard will also have silver colorIf anyone read this review to buy this laptop, it might be useful\n amazon show wrong pictur keyboard also silver colorif anyon read review buy laptop might useful\n Positive
2 I would request customers who have brought items on EMI through SBI card pleasr check your statement details as I had brought this prouduct on EMI of 9666/- including interest but bank is charging additional interest on this. 9666 + 330. Actually if they had to charge then they should have charged either 9666 per month or 9444+interest for three month. I would request Amazon also to look into the matter so that customers can freely use SBI cards for EMI payment.\n would request custom brought item emi sbi card pleasr check statement detail brought prouduct emi 9666 includ interest bank charg addit interest 9666 330 actual charg charg either 9666 per month 9444interest three month would request amazon also look matter custom freeli use sbi card emi payment\n Positive
3 I'm reviewing this laptop after 4 month of use.Pros:- Overall looks seems interesting.- Screen size and display is awesome.- 3 USB ports, 1 HDMI, 1 RJ45 connector, USB 3.5 JACK, SD card slot, CD Rom.- With Intel i3 7th gen this laptop works fine with all applications and browsing experience is too good.Cons:- You need to wait a minute after starting this laptop to be able to work. Else, it starts to hang.- Full size keyboard. The numeric buttons on the right should not be present.Overall verdict:Decent laptop at this price.\n im review laptop 4 month usepro overal look seem interest screen size display awesom 3 usb port 1 hdmi 1 rj45 connector usb 35 jack sd card slot cd rom intel i3 7th gen laptop work fine applic brows experi goodcon need wait minut start laptop abl work els start hang full size keyboard numer button right presentoveral verdictdec laptop price\n Positive
4 Let me start with my message stating Very unsatisfactory product. It is i3 7th gen with 4gb Ram but it is slower than a celeron processor my other laptop. Infact cant be compared as simple basic task like sending mail cant work in this laptop forget the gaming etc. VERY VERY SLOW . 100% memory and 100 % DISK usage show all the time in if u open task manager.I mailed HP looking at the messages from HP from other reviews. It seemed to be quite promising that someone from HP customer care will take the laptop solve it or replace it sad thing no one even bothered to reply to my mail.So sick HP service.\n let start messag state unsatisfactori product i3 7th gen 4gb ram slower celeron processor laptop infact cant compar simpl basic task like send mail cant work laptop forget game etc slow 100 memori 100 disk usag show time u open task manageri mail hp look messag hp review seem quit promis someon hp custom care take laptop solv replac sad thing one even bother repli mailso sick hp service\n Negative

To get the length of above reviews

In [14]:
def getlength(Reviews):
    message_tokens=Reviews.split(" ")
    return len(message_tokens)
In [15]:
df['len_reviews']=df['Reviews'].apply(lambda x:getlength(x))
df['len_reviews']
Out[15]:
0       20  
1       23  
2       82  
3       94  
4       116 
5       39  
6       35  
7       15  
8       8   
9       25  
10      46  
11      16  
12      257 
13      61  
14      14  
15      97  
16      70  
17      48  
18      11  
19      82  
20      3   
21      72  
22      10  
23      136 
24      31  
25      30  
26      63  
27      20  
28      45  
29      63  
30      17  
31      96  
32      28  
33      30  
34      21  
35      42  
36      6   
37      263 
38      35  
39      19  
40      10  
41      49  
42      10  
43      107 
44      15  
45      89  
46      128 
47      49  
48      76  
49      72  
50      21  
51      42  
52      145 
53      38  
54      53  
55      47  
56      15  
57      75  
58      43  
59      34  
60      35  
61      82  
62      10  
63      32  
64      36  
65      24  
66      62  
67      85  
68      2   
69      25  
70      51  
71      30  
72      70  
73      30  
74      25  
75      60  
76      76  
77      51  
78      1   
79      2   
80      39  
81      1   
82      22  
83      44  
84      29  
85      100 
86      90  
87      43  
88      40  
89      13  
90      27  
91      13  
92      48  
93      43  
94      15  
95      26  
96      13  
97      33  
98      47  
99      83  
100     35  
101     18  
102     1   
103     24  
104     17  
105     22  
106     12  
107     7   
108     37  
109     25  
110     48  
111     54  
112     46  
113     22  
114     44  
115     22  
116     6   
117     46  
118     43  
119     13  
120     6   
121     11  
122     25  
123     52  
124     24  
125     13  
126     16  
127     40  
128     35  
129     25  
130     8   
131     22  
132     14  
133     3   
134     24  
135     33  
136     3   
137     15  
138     40  
139     10  
140     3   
141     10  
142     16  
143     21  
144     42  
145     20  
146     16  
147     4   
148     37  
149     14  
150     42  
151     1   
152     33  
153     4   
154     3   
155     38  
156     4   
157     20  
158     8   
159     34  
160     28  
161     28  
162     9   
163     14  
164     7   
165     14  
166     24  
167     28  
168     38  
169     19  
170     5   
171     22  
172     17  
173     14  
174     19  
175     28  
176     16  
177     19  
178     8   
179     28  
180     2   
181     26  
182     17  
183     9   
184     13  
185     1   
186     34  
187     21  
188     14  
189     13  
190     22  
191     3   
192     34  
193     1   
194     4   
195     21  
196     43  
197     13  
198     31  
199     48  
200     15  
201     79  
202     63  
203     5   
204     128 
205     73  
206     54  
207     27  
208     8   
209     71  
210     86  
211     69  
212     36  
213     15  
214     6   
215     31  
216     13  
217     54  
218     65  
219     36  
220     48  
221     45  
222     26  
223     13  
224     17  
225     34  
226     4   
227     36  
228     19  
229     49  
230     17  
231     5   
232     4   
233     21  
234     12  
235     17  
236     33  
237     17  
238     22  
239     35  
240     22  
241     13  
242     9   
243     18  
244     9   
245     20  
246     9   
247     9   
248     8   
249     6   
250     1   
251     24  
252     23  
253     26  
254     10  
255     4   
256     10  
257     11  
258     27  
259     6   
260     14  
261     22  
262     6   
263     16  
264     20  
265     5   
266     10  
267     20  
268     18  
269     11  
270     5   
271     1   
272     11  
273     11  
274     2   
275     6   
276     27  
277     2   
278     10  
279     8   
280     12  
281     4   
282     12  
283     8   
284     4   
285     6   
286     7   
287     2   
288     11  
289     1   
290     7   
291     1   
292     5   
293     1   
294     9   
295     6   
296     1   
297     5   
298     10  
299     14  
300     3   
301     2   
302     2   
303     2   
304     1   
305     5   
306     3   
307     2   
308     5   
309     4   
310     1   
311     4   
312     5   
313     3   
314     5   
315     5   
316     3   
317     2   
318     1   
319     5   
320     3   
321     2   
322     3   
323     5   
324     7   
325     3   
326     7   
327     2   
328     2   
329     2   
330     5   
331     2   
332     2   
333     6   
334     1   
335     11  
336     3   
337     5   
338     6   
339     13  
340     2   
341     4   
342     7   
343     2   
344     1   
345     3   
346     7   
347     6   
348     1   
349     5   
350     2   
351     2   
352     3   
353     1   
354     5   
355     5   
356     85  
357     52  
358     45  
359     104 
360     37  
361     61  
362     35  
363     66  
364     41  
365     62  
366     62  
367     75  
368     780 
369     19  
370     60  
371     15  
372     23  
373     72  
374     37  
375     31  
376     5   
377     16  
378     23  
379     23  
380     10  
381     6   
382     488 
383     38  
384     16  
385     23  
386     27  
387     5   
388     10  
389     13  
390     5   
391     2   
392     2   
393     28  
394     19  
395     4   
396     3   
397     3   
398     5   
399     79  
400     28  
401     3   
402     30  
403     176 
404     224 
405     92  
406     44  
407     66  
408     76  
409     174 
410     121 
411     75  
412     28  
413     49  
414     107 
415     30  
416     41  
417     88  
418     25  
419     47  
420     12  
421     82  
422     51  
423     25  
424     16  
425     78  
426     280 
427     42  
428     79  
429     61  
430     13  
431     79  
432     24  
433     89  
434     11  
435     21  
436     88  
437     83  
438     468 
439     57  
440     108 
441     44  
442     12  
443     41  
444     32  
445     70  
446     53  
447     34  
448     53  
449     46  
450     29  
451     29  
452     18  
453     45  
454     18  
455     24  
456     66  
457     30  
458     43  
459     13  
460     34  
461     38  
462     14  
463     21  
464     11  
465     18  
466     29  
467     13  
468     37  
469     31  
470     25  
471     27  
472     5   
473     34  
474     4   
475     34  
476     16  
477     22  
478     18  
479     16  
480     9   
481     29  
482     5   
483     18  
484     27  
485     19  
486     8   
487     12  
488     26  
489     6   
490     24  
491     5   
492     20  
493     30  
494     20  
495     10  
496     25  
497     19  
498     21  
499     6   
500     10  
501     22  
502     3   
503     9   
504     7   
505     12  
506     24  
507     5   
508     2   
509     17  
510     16  
511     12  
512     18  
513     5   
514     2   
515     14  
516     18  
517     13  
518     14  
519     8   
520     5   
521     21  
522     4   
523     16  
524     16  
525     15  
526     1   
527     16  
528     6   
529     11  
530     10  
531     12  
532     10  
533     5   
534     4   
535     5   
536     10  
537     2   
538     2   
539     1   
540     8   
541     2   
542     3   
543     5   
544     8   
545     3   
546     5   
547     7   
548     3   
549     1   
550     5   
551     9   
552     6   
553     5   
554     1   
555     9   
556     2   
557     2   
558     5   
559     4   
560     2   
561     2   
562     5   
563     1   
564     4   
565     4   
566     4   
567     5   
568     5   
569     3   
570     3   
571     3   
572     2   
573     3   
574     2   
575     2   
576     3   
577     2   
578     2   
579     29  
580     11  
581     30  
582     78  
583     35  
584     151 
585     58  
586     62  
587     602 
588     188 
589     189 
590     87  
591     221 
592     34  
593     175 
594     175 
595     39  
596     59  
597     58  
598     168 
599     42  
600     33  
601     56  
602     37  
603     55  
604     107 
605     48  
606     20  
607     31  
608     66  
609     35  
610     31  
611     71  
612     19  
613     57  
614     13  
615     28  
616     5   
617     3   
618     32  
619     36  
620     24  
621     10  
622     17  
623     35  
624     36  
625     18  
626     31  
627     2   
628     21  
629     4   
630     18  
631     25  
632     13  
633     22  
634     8   
635     6   
636     18  
637     14  
638     8   
639     5   
640     3   
641     3   
642     4   
643     17  
644     22  
645     20  
646     8   
647     3   
648     7   
649     3   
650     6   
651     5   
652     20  
653     2   
654     16  
655     9   
656     14  
657     6   
658     10  
659     12  
660     6   
661     4   
662     6   
663     9   
664     6   
665     8   
666     5   
667     1   
668     6   
669     7   
670     4   
671     8   
672     5   
673     5   
674     8   
675     5   
676     6   
677     6   
678     4   
679     2   
680     2   
681     2   
682     4   
683     2   
684     4   
685     2   
686     2   
687     3   
688     3   
689     21  
690     181 
691     162 
692     18  
693     26  
694     64  
695     7   
696     7   
697     6   
698     6   
699     1   
700     15  
701     41  
702     3   
703     62  
704     1   
705     12  
706     52  
707     1272
708     53  
709     9   
710     28  
711     10  
712     5   
713     1   
714     10  
715     3   
716     4   
717     26  
718     2   
719     63  
720     7   
721     70  
722     13  
723     10  
724     297 
725     417 
726     43  
727     100 
728     102 
729     186 
730     255 
731     69  
732     238 
733     204 
734     47  
735     37  
736     56  
737     188 
738     74  
739     138 
740     115 
741     27  
742     83  
743     135 
744     101 
745     44  
746     44  
747     122 
748     35  
749     186 
750     279 
751     94  
752     95  
753     76  
754     87  
755     40  
756     160 
757     238 
758     160 
759     175 
760     70  
761     93  
762     34  
763     174 
764     64  
765     468 
766     138 
767     69  
768     39  
769     130 
770     185 
771     243 
772     477 
773     88  
774     175 
775     87  
776     53  
777     31  
778     208 
779     57  
780     133 
781     110 
782     21  
783     25  
784     108 
785     163 
786     188 
787     85  
788     92  
789     41  
790     104 
791     157 
792     105 
793     49  
794     119 
795     12  
796     115 
797     63  
798     235 
799     60  
800     3   
801     92  
802     35  
803     64  
804     45  
805     31  
806     94  
807     94  
808     26  
809     38  
810     46  
811     47  
812     67  
813     36  
814     44  
815     243 
816     24  
817     26  
818     60  
819     5   
820     50  
821     25  
822     13  
823     37  
824     37  
825     19  
826     67  
827     70  
828     33  
829     62  
830     67  
831     57  
832     44  
833     48  
834     42  
835     33  
836     49  
837     36  
838     46  
839     51  
840     33  
841     42  
842     56  
843     32  
844     43  
845     52  
846     30  
847     37  
848     49  
849     50  
850     43  
851     51  
852     35  
853     24  
854     27  
855     35  
856     38  
857     28  
858     34  
859     3   
860     43  
861     21  
862     53  
863     22  
864     50  
865     18  
866     34  
867     28  
868     11  
869     39  
870     14  
871     12  
872     15  
873     26  
874     14  
875     42  
876     39  
877     31  
878     35  
879     20  
880     45  
881     10  
882     27  
883     34  
884     46  
885     23  
886     45  
887     48  
888     14  
889     10  
890     22  
891     18  
892     54  
893     29  
894     34  
895     16  
896     36  
897     25  
898     5   
899     14  
900     3   
901     16  
902     33  
903     31  
904     20  
905     5   
906     35  
907     38  
908     24  
909     26  
910     17  
911     12  
912     35  
913     39  
914     5   
915     24  
916     15  
917     33  
918     24  
919     35  
920     28  
921     15  
922     72  
923     38  
924     23  
925     16  
926     3   
927     2   
928     6   
929     2   
930     15  
931     8   
932     106 
933     194 
934     65  
935     125 
936     107 
937     86  
938     101 
939     186 
940     76  
941     36  
942     139 
943     46  
944     48  
945     198 
946     68  
947     73  
948     106 
949     85  
950     105 
951     81  
952     44  
953     80  
954     74  
955     30  
956     37  
957     106 
958     62  
959     42  
960     57  
961     84  
962     41  
963     60  
964     40  
965     37  
966     33  
967     41  
968     41  
969     26  
970     37  
971     23  
972     54  
973     41  
974     34  
975     22  
976     13  
977     17  
978     34  
979     19  
980     22  
981     49  
982     41  
983     12  
984     45  
985     37  
986     15  
987     25  
988     47  
989     32  
990     39  
991     14  
992     26  
993     30  
994     21  
995     31  
996     6   
997     5   
998     7   
999     21  
1000    15  
1001    27  
1002    17  
1003    21  
1004    36  
1005    24  
1006    26  
1007    3   
1008    26  
1009    36  
1010    4   
1011    13  
1012    26  
1013    23  
1014    13  
1015    26  
1016    5   
1017    8   
1018    4   
1019    17  
1020    7   
1021    25  
1022    21  
1023    18  
1024    11  
1025    16  
1026    16  
1027    22  
1028    23  
1029    12  
1030    18  
1031    12  
1032    5   
1033    6   
1034    5   
1035    19  
1036    19  
1037    24  
1038    7   
1039    14  
1040    9   
1041    7   
1042    7   
1043    4   
1044    4   
1045    18  
1046    20  
1047    16  
1048    7   
1049    8   
1050    17  
1051    14  
1052    10  
1053    17  
1054    8   
1055    12  
1056    2   
1057    20  
1058    2   
1059    3   
1060    7   
1061    12  
1062    10  
1063    7   
1064    8   
1065    6   
1066    5   
1067    5   
1068    10  
1069    3   
1070    14  
1071    9   
1072    6   
1073    12  
1074    2   
1075    11  
1076    10  
1077    7   
1078    9   
1079    7   
1080    7   
1081    4   
1082    5   
1083    6   
1084    2   
1085    9   
1086    10  
1087    4   
1088    9   
1089    10  
1090    9   
1091    4   
1092    11  
1093    2   
1094    5   
1095    7   
1096    8   
1097    6   
1098    6   
1099    3   
1100    6   
1101    5   
1102    5   
1103    6   
1104    5   
1105    1   
1106    4   
1107    3   
1108    3   
1109    4   
1110    2   
1111    5   
1112    2   
1113    2   
1114    2   
1115    5   
1116    3   
1117    5   
1118    4   
1119    2   
1120    109 
1121    53  
1122    27  
1123    23  
1124    5   
1125    5   
1126    41  
1127    11  
1128    16  
1129    14  
1130    13  
1131    15  
1132    8   
1133    11  
1134    12  
1135    2   
1136    2   
1137    2   
1138    18  
1139    7   
1140    7   
1141    5   
1142    8   
1143    31  
1144    3   
1145    34  
1146    36  
1147    16  
1148    4   
1149    2   
1150    76  
1151    6   
1152    13  
1153    49  
1154    13  
1155    162 
1156    118 
1157    34  
1158    87  
1159    30  
1160    56  
1161    43  
1162    59  
1163    26  
1164    66  
1165    60  
1166    35  
1167    5   
1168    25  
1169    25  
1170    28  
1171    12  
1172    17  
1173    8   
1174    5   
1175    34  
1176    9   
1177    3   
1178    28  
1179    25  
1180    12  
1181    4   
1182    8   
1183    12  
1184    12  
1185    4   
1186    12  
1187    10  
1188    10  
1189    3   
1190    10  
1191    9   
1192    4   
1193    7   
1194    4   
1195    4   
1196    4   
1197    170 
1198    47  
1199    26  
1200    49  
1201    9   
1202    1   
1203    4   
1204    2   
1205    5   
1206    1   
1207    13  
1208    63  
1209    164 
1210    47  
1211    147 
1212    46  
1213    45  
1214    66  
1215    34  
1216    34  
1217    61  
1218    37  
1219    65  
1220    11  
1221    35  
1222    42  
1223    82  
1224    109 
1225    6   
1226    25  
1227    40  
1228    38  
1229    24  
1230    23  
1231    69  
1232    20  
1233    35  
1234    13  
1235    4   
1236    4   
1237    47  
1238    5   
1239    18  
1240    25  
1241    18  
1242    19  
1243    23  
1244    8   
1245    14  
1246    52  
1247    9   
1248    35  
1249    43  
1250    16  
1251    9   
1252    6   
1253    14  
1254    23  
1255    9   
1256    16  
1257    31  
1258    13  
1259    15  
1260    26  
1261    6   
1262    33  
1263    15  
1264    8   
1265    8   
1266    11  
1267    19  
1268    24  
1269    16  
1270    5   
1271    27  
1272    12  
1273    2   
1274    20  
1275    8   
1276    2   
1277    20  
1278    2   
1279    12  
1280    5   
1281    11  
1282    4   
1283    4   
1284    15  
1285    4   
1286    3   
1287    19  
1288    5   
1289    14  
1290    16  
1291    1   
1292    3   
1293    10  
1294    14  
1295    11  
1296    8   
1297    10  
1298    11  
1299    11  
1300    4   
1301    5   
1302    8   
1303    7   
1304    11  
1305    7   
1306    6   
1307    7   
1308    4   
1309    10  
1310    2   
1311    8   
1312    8   
1313    2   
1314    5   
1315    5   
1316    6   
1317    6   
1318    11  
1319    2   
1320    5   
1321    4   
1322    5   
1323    4   
1324    5   
1325    1   
1326    3   
1327    4   
1328    6   
1329    2   
1330    5   
1331    3   
1332    4   
1333    3   
1334    3   
1335    5   
1336    1   
1337    50  
1338    80  
1339    15  
1340    57  
1341    28  
1342    14  
1343    41  
1344    28  
1345    20  
1346    9   
1347    18  
1348    3   
1349    14  
1350    10  
1351    2   
1352    2   
1353    20  
1354    3   
1355    5   
1356    2   
1357    1   
1358    14  
1359    360 
1360    100 
1361    35  
1362    42  
1363    43  
1364    154 
1365    20  
1366    154 
1367    81  
1368    138 
1369    46  
1370    6   
1371    44  
1372    21  
1373    14  
1374    69  
1375    95  
1376    68  
1377    81  
1378    9   
1379    74  
1380    34  
1381    29  
1382    64  
1383    30  
1384    93  
1385    61  
1386    118 
1387    116 
1388    13  
1389    135 
1390    12  
1391    79  
1392    23  
1393    6   
1394    86  
1395    75  
1396    58  
1397    53  
1398    78  
1399    22  
1400    48  
1401    157 
1402    95  
1403    53  
1404    175 
1405    40  
1406    26  
1407    34  
1408    28  
1409    92  
1410    65  
1411    56  
1412    27  
1413    66  
1414    62  
1415    29  
1416    46  
1417    73  
1418    52  
1419    65  
1420    37  
1421    56  
1422    80  
1423    74  
1424    66  
1425    13  
1426    40  
1427    33  
1428    36  
1429    33  
1430    43  
1431    44  
1432    41  
1433    41  
1434    32  
1435    51  
1436    50  
1437    40  
1438    37  
1439    39  
1440    34  
1441    26  
1442    13  
1443    19  
1444    32  
1445    21  
1446    26  
1447    55  
1448    48  
1449    23  
1450    7   
1451    50  
1452    22  
1453    29  
1454    39  
1455    45  
1456    25  
1457    43  
1458    45  
1459    20  
1460    41  
1461    28  
1462    34  
1463    26  
1464    17  
1465    31  
1466    40  
1467    12  
1468    35  
1469    26  
1470    34  
1471    10  
1472    20  
1473    29  
1474    23  
1475    3   
1476    21  
1477    19  
1478    35  
1479    33  
1480    14  
1481    31  
1482    30  
1483    18  
1484    3   
1485    30  
1486    15  
1487    5   
1488    40  
1489    11  
1490    29  
1491    13  
1492    6   
1493    30  
1494    34  
1495    35  
1496    33  
1497    12  
1498    8   
1499    28  
1500    19  
1501    31  
1502    24  
1503    22  
1504    23  
1505    15  
1506    4   
1507    4   
1508    28  
1509    10  
1510    19  
1511    28  
1512    25  
1513    15  
1514    12  
1515    11  
1516    7   
1517    14  
1518    8   
1519    26  
1520    7   
1521    18  
1522    14  
1523    25  
1524    19  
1525    16  
1526    3   
1527    5   
1528    17  
1529    6   
1530    26  
1531    27  
1532    1   
1533    19  
1534    20  
1535    25  
1536    3   
1537    19  
1538    6   
1539    2   
1540    3   
1541    6   
1542    8   
1543    14  
1544    4   
1545    17  
1546    17  
1547    7   
1548    21  
1549    88  
1550    41  
1551    40  
1552    137 
1553    46  
1554    113 
1555    32  
1556    79  
1557    19  
1558    52  
1559    8   
1560    66  
1561    14  
1562    55  
1563    42  
1564    51  
1565    133 
1566    51  
1567    34  
1568    71  
1569    61  
1570    100 
1571    11  
1572    51  
1573    49  
1574    50  
1575    82  
1576    35  
1577    19  
1578    32  
1579    28  
1580    65  
1581    13  
1582    41  
1583    52  
1584    42  
1585    34  
1586    25  
1587    13  
1588    63  
1589    46  
1590    38  
1591    41  
1592    10  
1593    61  
1594    47  
1595    62  
1596    36  
1597    7   
1598    7   
1599    53  
1600    8   
1601    16  
1602    6   
1603    36  
1604    46  
1605    11  
1606    4   
1607    37  
1608    2   
1609    3   
1610    15  
1611    46  
1612    2   
1613    24  
1614    16  
1615    18  
1616    9   
1617    8   
1618    31  
1619    15  
1620    33  
1621    22  
1622    7   
1623    7   
1624    31  
1625    33  
1626    17  
1627    9   
1628    9   
1629    19  
1630    29  
1631    31  
1632    7   
1633    4   
1634    6   
1635    33  
1636    3   
1637    4   
1638    10  
1639    23  
1640    22  
1641    2   
1642    3   
1643    21  
1644    16  
1645    11  
1646    14  
1647    29  
1648    6   
1649    8   
1650    2   
1651    7   
1652    6   
1653    17  
1654    22  
1655    23  
1656    7   
1657    4   
1658    4   
1659    2   
1660    25  
1661    14  
1662    19  
1663    11  
1664    10  
1665    5   
1666    15  
1667    9   
1668    16  
1669    21  
1670    7   
1671    19  
1672    6   
1673    6   
1674    7   
1675    12  
1676    17  
1677    9   
1678    3   
1679    9   
1680    8   
1681    1   
1682    3   
1683    6   
1684    4   
1685    16  
1686    3   
1687    2   
1688    5   
1689    13  
1690    6   
1691    16  
1692    6   
1693    7   
1694    12  
1695    6   
1696    11  
1697    10  
1698    10  
1699    3   
1700    10  
1701    13  
1702    9   
1703    6   
1704    10  
1705    13  
1706    2   
1707    3   
1708    7   
1709    8   
1710    10  
1711    10  
1712    14  
1713    8   
1714    7   
1715    3   
1716    9   
1717    7   
1718    6   
1719    6   
1720    4   
1721    7   
1722    4   
1723    3   
1724    2   
1725    7   
1726    6   
1727    8   
1728    4   
1729    9   
1730    5   
1731    38  
1732    59  
1733    30  
1734    49  
1735    29  
1736    137 
1737    10  
1738    16  
1739    29  
1740    4   
1741    16  
1742    54  
1743    19  
1744    27  
1745    30  
1746    34  
1747    9   
1748    45  
1749    40  
1750    36  
1751    9   
1752    15  
1753    5   
1754    3   
1755    2   
1756    4   
1757    15  
1758    11  
1759    19  
1760    2   
1761    6   
1762    14  
1763    24  
1764    10  
1765    13  
1766    13  
1767    6   
1768    7   
1769    4   
1770    3   
1771    8   
1772    11  
1773    8   
1774    8   
1775    8   
1776    2   
1777    7   
1778    8   
1779    5   
1780    6   
1781    4   
1782    4   
1783    4   
1784    1   
1785    5   
1786    3   
1787    3   
1788    3   
1789    2   
1790    2   
1791    1   
1792    1   
1793    1   
1794    1   
1795    2   
1796    28  
1797    23  
1798    28  
1799    6   
1800    8   
1801    12  
1802    5   
1803    5   
1804    1   
1805    3   
1806    14  
1807    5   
1808    15  
1809    1   
1810    93  
1811    43  
1812    8   
1813    84  
1814    73  
1815    22  
1816    1   
1817    33  
1818    29  
1819    11  
1820    14  
1821    5   
1822    5   
1823    15  
1824    42  
1825    19  
1826    52  
1827    15  
1828    21  
1829    5   
1830    9   
1831    15  
1832    2   
1833    26  
1834    11  
1835    6   
1836    9   
1837    10  
1838    4   
1839    6   
1840    4   
1841    7   
1842    3   
1843    9   
1844    7   
1845    50  
1846    18  
1847    53  
1848    20  
1849    10  
1850    8   
1851    26  
1852    16  
1853    95  
1854    31  
1855    25  
1856    2   
1857    34  
1858    285 
1859    8   
1860    14  
1861    12  
1862    2   
1863    5   
1864    45  
1865    21  
1866    3   
1867    10  
1868    39  
1869    48  
1870    5   
1871    3   
1872    18  
1873    3   
1874    11  
1875    1   
1876    28  
1877    14  
1878    23  
1879    26  
1880    7   
1881    5   
1882    81  
1883    15  
1884    1196
1885    256 
1886    123 
1887    121 
1888    105 
1889    29  
1890    115 
1891    180 
1892    23  
1893    37  
1894    118 
1895    49  
1896    21  
1897    299 
1898    52  
1899    30  
1900    30  
1901    62  
1902    38  
1903    74  
1904    71  
1905    48  
1906    32  
1907    490 
1908    115 
1909    86  
1910    83  
1911    42  
1912    60  
1913    59  
1914    61  
1915    82  
1916    84  
1917    21  
1918    53  
1919    71  
1920    22  
1921    169 
1922    223 
1923    207 
1924    36  
1925    364 
1926    65  
1927    112 
1928    36  
1929    31  
1930    30  
1931    71  
1932    66  
1933    42  
1934    27  
1935    29  
1936    51  
1937    6   
1938    27  
1939    22  
1940    31  
1941    67  
1942    36  
1943    50  
1944    47  
1945    34  
1946    38  
1947    41  
1948    27  
1949    43  
1950    48  
1951    12  
1952    32  
1953    43  
1954    64  
1955    17  
1956    25  
1957    46  
1958    48  
1959    5   
1960    27  
1961    33  
1962    6   
1963    23  
1964    36  
1965    28  
1966    13  
1967    38  
1968    27  
1969    45  
1970    25  
1971    25  
1972    31  
1973    13  
1974    22  
1975    18  
1976    34  
1977    26  
1978    43  
1979    16  
1980    16  
1981    14  
1982    40  
1983    39  
1984    7   
1985    22  
1986    21  
1987    33  
1988    23  
1989    4   
1990    32  
1991    11  
1992    16  
1993    25  
1994    2   
1995    2   
1996    9   
1997    6   
1998    4   
1999    13  
2000    9   
2001    4   
2002    6   
2003    11  
2004    1   
2005    10  
2006    4   
2007    13  
2008    6   
2009    5   
2010    18  
2011    7   
2012    7   
2013    1   
2014    28  
2015    25  
2016    20  
2017    8   
2018    24  
2019    26  
2020    3   
2021    2   
2022    23  
2023    21  
2024    21  
2025    25  
2026    11  
2027    13  
2028    21  
2029    9   
2030    3   
2031    18  
2032    3   
2033    11  
2034    18  
2035    14  
2036    2   
2037    18  
2038    2   
2039    17  
2040    16  
2041    2   
2042    4   
2043    7   
2044    6   
2045    17  
2046    14  
2047    8   
2048    16  
2049    14  
2050    10  
2051    12  
2052    15  
2053    3   
2054    9   
2055    6   
2056    14  
2057    16  
2058    13  
2059    3   
2060    2   
2061    10  
2062    2   
2063    10  
2064    5   
2065    7   
2066    6   
2067    8   
2068    4   
2069    11  
2070    9   
2071    10  
2072    4   
2073    16  
2074    31  
2075    11  
2076    151 
2077    29  
2078    128 
2079    22  
2080    1   
2081    18  
2082    59  
2083    20  
2084    8   
2085    6   
2086    8   
2087    12  
2088    9   
2089    5   
2090    55  
2091    31  
2092    48  
2093    16  
2094    60  
2095    42  
2096    29  
2097    45  
2098    56  
2099    18  
2100    83  
2101    76  
2102    20  
2103    11  
2104    34  
2105    42  
2106    79  
2107    7   
2108    73  
2109    39  
2110    25  
2111    25  
2112    10  
2113    29  
2114    21  
2115    6   
2116    18  
2117    8   
2118    15  
2119    6   
2120    22  
2121    9   
2122    16  
2123    7   
2124    2   
2125    21  
2126    6   
2127    17  
2128    3   
2129    2   
2130    22  
2131    20  
2132    19  
2133    11  
2134    6   
2135    3   
2136    5   
2137    8   
2138    11  
2139    6   
2140    3   
2141    2   
2142    9   
2143    11  
2144    12  
2145    3   
2146    8   
2147    6   
2148    7   
2149    6   
2150    5   
2151    5   
2152    4   
2153    2   
2154    10  
2155    5   
2156    7   
2157    5   
2158    3   
2159    4   
2160    3   
2161    5   
2162    3   
2163    3   
2164    2   
2165    231 
2166    76  
2167    27  
2168    25  
2169    63  
2170    2   
2171    3   
2172    9   
2173    38  
2174    2   
2175    1   
2176    15  
2177    26  
2178    5   
2179    15  
2180    19  
2181    37  
2182    76  
2183    6   
2184    46  
2185    190 
2186    2   
2187    2   
2188    22  
2189    18  
2190    4   
2191    3   
2192    11  
2193    13  
2194    3   
2195    3   
2196    14  
2197    63  
2198    14  
2199    24  
2200    31  
2201    8   
2202    6   
2203    15  
2204    233 
2205    13  
2206    73  
2207    229 
2208    25  
2209    28  
2210    4   
2211    10  
2212    9   
2213    5   
2214    144 
2215    16  
2216    19  
2217    17  
2218    74  
2219    19  
2220    11  
2221    58  
2222    37  
2223    105 
2224    64  
2225    53  
2226    35  
2227    23  
2228    19  
2229    2   
2230    16  
2231    12  
2232    6   
2233    6   
2234    6   
2235    77  
2236    65  
2237    42  
2238    3   
2239    31  
2240    12  
2241    12  
2242    44  
2243    5   
2244    5   
2245    32  
2246    41  
2247    64  
2248    12  
2249    13  
2250    12  
2251    33  
2252    7   
2253    40  
2254    32  
2255    16  
2256    33  
2257    28  
2258    7   
2259    18  
2260    19  
2261    8   
2262    41  
2263    31  
2264    6   
2265    9   
2266    32  
2267    30  
2268    18  
2269    19  
2270    28  
2271    24  
2272    18  
2273    8   
2274    2   
2275    16  
2276    4   
2277    1   
2278    3   
2279    16  
2280    8   
2281    9   
2282    10  
2283    2   
2284    6   
2285    8   
2286    8   
2287    10  
2288    2   
2289    9   
2290    6   
2291    9   
2292    13  
2293    3   
2294    8   
2295    9   
2296    9   
2297    7   
2298    7   
2299    6   
2300    2   
2301    6   
2302    6   
2303    5   
2304    2   
2305    3   
2306    2   
2307    1   
2308    1   
2309    4   
2310    3   
2311    5   
2312    3   
2313    2   
2314    3   
2315    1   
2316    5   
2317    2   
2318    12  
2319    37  
2320    8   
2321    10  
2322    24  
2323    52  
2324    8   
2325    28  
2326    49  
2327    7   
2328    18  
2329    22  
2330    25  
2331    4   
2332    7   
2333    14  
2334    7   
2335    4   
2336    2   
2337    41  
2338    39  
2339    11  
2340    13  
2341    11  
2342    22  
2343    64  
2344    15  
2345    63  
2346    21  
2347    41  
2348    22  
2349    35  
2350    16  
2351    29  
2352    23  
2353    14  
2354    8   
2355    9   
2356    5   
2357    5   
2358    4   
2359    2   
2360    49  
2361    5   
2362    33  
2363    22  
2364    15  
2365    23  
2366    9   
2367    3   
2368    3   
2369    8   
2370    2   
2371    107 
2372    110 
2373    17  
2374    34  
2375    63  
2376    66  
2377    58  
2378    5   
2379    2   
2380    17  
2381    11  
2382    6   
2383    17  
2384    10  
2385    46  
2386    36  
2387    19  
2388    52  
2389    26  
2390    23  
2391    10  
2392    18  
Name: len_reviews, dtype: int64
In [16]:
df.head()
Out[16]:
Reviews clean_text rating len_reviews
0 There is no sound in the laptop even after installing necessary drives.Please suggest solution otherwise I will return the item.\n sound laptop even instal necessari drivespleas suggest solut otherwis return item\n Neutral 20
1 Amazon showing wrong pictures, the keyboard will also have silver colorIf anyone read this review to buy this laptop, it might be useful\n amazon show wrong pictur keyboard also silver colorif anyon read review buy laptop might useful\n Positive 23
2 I would request customers who have brought items on EMI through SBI card pleasr check your statement details as I had brought this prouduct on EMI of 9666/- including interest but bank is charging additional interest on this. 9666 + 330. Actually if they had to charge then they should have charged either 9666 per month or 9444+interest for three month. I would request Amazon also to look into the matter so that customers can freely use SBI cards for EMI payment.\n would request custom brought item emi sbi card pleasr check statement detail brought prouduct emi 9666 includ interest bank charg addit interest 9666 330 actual charg charg either 9666 per month 9444interest three month would request amazon also look matter custom freeli use sbi card emi payment\n Positive 82
3 I'm reviewing this laptop after 4 month of use.Pros:- Overall looks seems interesting.- Screen size and display is awesome.- 3 USB ports, 1 HDMI, 1 RJ45 connector, USB 3.5 JACK, SD card slot, CD Rom.- With Intel i3 7th gen this laptop works fine with all applications and browsing experience is too good.Cons:- You need to wait a minute after starting this laptop to be able to work. Else, it starts to hang.- Full size keyboard. The numeric buttons on the right should not be present.Overall verdict:Decent laptop at this price.\n im review laptop 4 month usepro overal look seem interest screen size display awesom 3 usb port 1 hdmi 1 rj45 connector usb 35 jack sd card slot cd rom intel i3 7th gen laptop work fine applic brows experi goodcon need wait minut start laptop abl work els start hang full size keyboard numer button right presentoveral verdictdec laptop price\n Positive 94
4 Let me start with my message stating Very unsatisfactory product. It is i3 7th gen with 4gb Ram but it is slower than a celeron processor my other laptop. Infact cant be compared as simple basic task like sending mail cant work in this laptop forget the gaming etc. VERY VERY SLOW . 100% memory and 100 % DISK usage show all the time in if u open task manager.I mailed HP looking at the messages from HP from other reviews. It seemed to be quite promising that someone from HP customer care will take the laptop solve it or replace it sad thing no one even bothered to reply to my mail.So sick HP service.\n let start messag state unsatisfactori product i3 7th gen 4gb ram slower celeron processor laptop infact cant compar simpl basic task like send mail cant work laptop forget game etc slow 100 memori 100 disk usag show time u open task manageri mail hp look messag hp review seem quit promis someon hp custom care take laptop solv replac sad thing one even bother repli mailso sick hp service\n Negative 116
In [17]:
df['len_reviews'][df.rating=='Positive'].mean()
Out[17]:
37.66710182767624
In [18]:
df['len_reviews'][df.rating=='Negative'].mean()
Out[18]:
33.666666666666664
In [19]:
df['len_reviews'][df.rating=='Neutral'].mean()
Out[19]:
12.772300469483568

perform wordcloud for positive, negative and neutral reviews

In [20]:
from wordcloud import WordCloud
wordcloud = WordCloud(height=2000, width=2000, stopwords=set(stopwords.words('english')), background_color='white')
wordcloud = wordcloud.generate(' '.join(df['clean_text'].tolist()))
plt.imshow(wordcloud)
plt.title("Most common words in clean_text")
plt.axis('off')
plt.show()
Out[20]:
<matplotlib.image.AxesImage at 0x1dc70f184c8>
Out[20]:
Text(0.5, 1.0, 'Most common words in clean_text')
Out[20]:
(-0.5, 1999.5, 1999.5, -0.5)
In [21]:
positive_reviews=df['clean_text'][df['rating']=='Positive']
In [22]:
positive_reviews
Out[22]:
1       amazon show wrong pictur keyboard also silver colorif anyon read review buy laptop might useful\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2       would request custom brought item emi sbi card pleasr check statement detail brought prouduct emi 9666 includ interest bank charg addit interest 9666 330 actual charg charg either 9666 per month 9444interest three month would request amazon also look matter custom freeli use sbi card emi payment\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
3       im review laptop 4 month usepro overal look seem interest screen size display awesom 3 usb port 1 hdmi 1 rj45 connector usb 35 jack sd card slot cd rom intel i3 7th gen laptop work fine applic brows experi goodcon need wait minut start laptop abl work els start hang full size keyboard numer button right presentoveral verdictdec laptop price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
6       purchas laptop use last 20 day perform wise slow bulki comfort everyday usesuggest get better laptop price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
7       bloodi product doesnt power call custom support repli adamantly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
12      first perform noth write home abouti spent time download instal updat actual use laptopit dead slow altogeth stoppedwork 7 month contact hp custom care advis softwar recoveryi tri step advis still bootingth product still warranti use onlin class basic brows ie game heavi stuffi request servic visit declin say softwar issu servic visit arrangedi dont know use guarante buy licens window version live remot place nearbi servic centrei left option dump item kind support hpshould serv eye open one plan go hp laptopaft almost one month laptop still repairedshould serv indic much pompom ed hp servicemi advis pleas desist buy crapupdatenow hp say defect hard disk servic engin replac hard disk howev usb media bought hp shell rs 1100 work final servic engin instal window cloud recoveri howev hp promis free replac recoveri media subsequ keypad start function errat lappi still servic centr dont know make whole process\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
13      pros1 sound qualiti good2 pictur qualiti satisfactory3 camera averag ok price range4 keypad comfortable5 life time valid window 10 home mso studentcons1 anti viru macafe trial version 30 days2 open applic slow better go i53 batteri easili removablenotevalu money laptop compromis performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
14      good productawesom batteri backupworth moneysimpl drawback doesnt antiglar display\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
15      hello folksth product review share alway help buy product respons write reviewthi laptop bought 2 week ago till observ areproslight weightsingl coat appear nicekeyboard robustsound qualiti goodconsif want speed product buycharg speed greattouch pad smoothlaptop soon becom hotoveral want play game budget less 30 k give product thoughtthank read hope helpful\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
17      would recommend dell laptop hp buy use dell far better hponli two major advantag laptopm officegreat speakerth display low qualiti system slowi dell also older configur perform lot better\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
18      nice sound qualiti nice backup 45 hr valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
21      system turn take much time say 20 min turn provid instal minim softwar restart system requir 1 hr state updat run backgroundsql server heavi weight softwar instal 250gb hard disk free win 10 preinstal i3 7th gen processor anyon face issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
25      valu money good sound qualiti normal batteri life three hour nutshel laptop good price rang thank you\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
26      first product pack greatsecond laptop gudprosanti glare display greatkeyboard gud camera avgmultitask greatsound loud clearlaptop lightweightconslag bit sometimesmayb upgrad ssd drive improv performancefor gamer ram nd graphic need upgradedgood medium gamingoveral great laptop budget 31k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
27      singl word worth initi may feel slow updat work smoothly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
28      receiv product 9th may 2019 ive instal app slow whatev open take much time open better go dell lenovo satifi kind product hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
29      brought product almost 1 month back also submit complaint slow perform also taken remot support hp help desk servic center improv henc send home assist still turn make arrang per availabilitycurr seek hp revert need return back faulti product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
31      super quick deliveri alway amazonhav use laptop everyday 8hr singl issu face till datenot sure perform game never use gamingbatteri life also pretti good 45hr power saver mode mildli heavi usageeasi carri around weigh much compact welloveral perform good reason heavi usag test heavi usag program gamingmi opinion pretti reason good perform light weight valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
32      good laptop beauti colour design window 10 need upgrad complet updat run fasti satisfi laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
33      overal laptop gooda colour commonstandarddisplay superb depend upon qualiti seemcafe antiviru 30 day trialperform gooddisplay excellentstorag plenti enoughgood programming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
35      review use 15daystoo slowwwww worst product hp respons custom care amazongo dell lenovo brand hp amazon servicelaptop krk jao 😴😴😴😴can get better laptop price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
36      good product meet requirement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
37      first place laptop got delay deliv call amazon told upfront don’t need tri return without open packag amazon take amazon back sell high price product custom imag text way return back don’t need don’t like perform expectationspoor amazon polici buy need buy risk final sale way return live itwhen tri load upload tri instal first softwar super slowwhen tri view youtub video drag video see perform laptop kind stuck respond 1 2 min even make video full screen mode take pop upwhat sever perform issu laptop never ever buy don’t don’t don’t don’t buy thiswhen extract 500mb file zip memori read memori util go 100 can’t use applic dam super slowupd comment 27jul2019 request technician visit tech guy confirm issu final amazon provid replac replac worst see pic updat review\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
41      use 2 week write reviewit nice use product daili use batteri life good get charg fast screen qualiti awsom think camera qualiti littl bit improv otherwis everyth okey\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
42      love product pack qualiti also good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
46      gadget guy here short review model lappi bought todaydesign goodweight surprisingli light hpspec nice config decent budgetfhd screen new addit quit good resolut especi antiglarebatteri interest aspect lappi charg twice use heavili test give pretti good backup 4hr much satisfiedi3 4gb ddr4 combo perform expect initi boot updat gonna make feel lappi slow give time setup later lappi fliesoveral pretti good lappi afford price 😊👍and come packag 265k offer appli credit card offers\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
47      bought product amazon much satisfi product rang 31k speaker qualiti poor screen qualiti mark good sidebut thank bajaj finserv fulfil financi need 😀 thnx bajaj amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
48      get pay modest price reflect respons system howev job entri level laptop basic brows read secondari laptop use childrenbiggest pro screen size extend keyboard dedic number padbiggest con would slow laptop absenc backlit keyboard though latter known purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
51      worst product pathet laptop hang everi day 8 10 time wast money seller will take back within return period amazon kind seller sure take reput market\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
54      bad product one purchas wast money slow perform like 1 gb mobil phone hang batteri back 1 hour u want wast money purchas otherwis dont purchas item seller custom care said return polici product returned\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
56      pleas dont buy extrem slow 8 year old laptop work better this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
57      purchas product today along ms offic activ ms offic seek product key pl help get ms offic key packag document regard ms officeaft use 6 month mous lag window 10 tri obtion unabl rectifi therefornow use bluetooth mous ok issu system superb work greatly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
58      dont hesit buy product student best entri level laptop serv everi import function everi student pleas dont hesit buy itit also pre instal ms officewindow 10valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
60      good laptop home use ms offic preload set smooth bit slower start expect core i3 7th gen otherwis good valu pricepoint\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
62      ekdam ghatiya hact like old laptop perform slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
64      system come window 10 offic suit boot speed slow plan upgrad system ssd get better perform wich 5 faster\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
66      rang guess good laptop singl drive partit one chang instal everyth c drive slow lappysecondli issu black screen error everi time log success replac thank teamyou buy budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
67      bought laptop hp 15da0327tu 2018 156inch almost 6 month back total struckup laptop1 take almost 10 minut boot fully2 alway show disk usag 100 thought 10 data cdrive3 googl chrome edg browser alway hangsnow plan contact hp custom resolv hopecor i3 good window 10 alway better go i5 os window 10\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
68      best quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
71      provis 0000000001 star avail would given laptop run slow like 2g network take time open link\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
72      laptop good reason price config batteri seem drain littl faster compar descript given lag issu startup chang set run fine keyboard soft easi use num pad make handi type number could better key differ colouroveral good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
74      batteri good bt sound qualiti quit averag u say averag processor also averagetot disappoint product \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
76      best product price range1 weight decent2 game perform high3 person like product batteri life one time full charg give 10 12 hour backup4 use last 12 13 day hang issu alsooveral dont buy laptop play game say best product price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
77      inspit 4gb ram system get chang point laptop take minut start open basic applic like ms excel ms word browser like chrome time lag doesnt function smoothli sad wast 30k trash\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
78      excellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
80      sirmadama per requirementsi dont ms offic dont bag alreadi attach factori need immedi call otherwis return laptop screen qualiti good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
81      good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
82      dear sir madami purchas hp laptop touchpad isnt work well need return back pleas coordin asap\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
84      batteri life much good problem silver white bodi colour easili catch scratch dirti easili one go black colour bodi laptop \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
87      cheap compar showroom outsidereceiv brand new lappi good packag come preinstal ms offic i3 7th gener processor still lag performan normal task take lot time boot recommend gaming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
89      product good “even bad” it’ get hang regular basis\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
94      useless productveri slow processingit better buy product showroom rather amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
96      laptop work slow compar dell purchas friend\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
97      laptop great i3 need usag everyday surf movi ms officenot meant gamingcam life time valid os 10 ms office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
98      first confusionlaptop boot power switch oni opt return therecontact hp support answerat last amazon came helpthey told charg for3hrsthen okhp peopl pl listen wise bad impressionsat least give hints\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
99      hole laptop colour good keypad silver colour good light 4 gm ram good hang problem assembl extra 4 gb ram perform good pl dont buy 4 gm ram laptop 8 gb ram laptop buy bilveri product bad amazon diveri agent pick call 30 time call rpli amzon return amount replac choic frnd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
100     avail warranti laptop workingwhen took laptop hp servic center ask laptop serial invoic miss kindli help out\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
102     nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
105     process speed slow dont even open basic app smoothli like offic web browser benefit buy genuin windows\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
110     wors product ever boughti total dnt like featur moreov hang timei ask return bt instead ask updat dnt want keep product want return soon possible\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
111     budget around 30 32k good bye gener purpos excel product mani slightli slow first time boot took lot time great updat finish updat perform great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
112     worst laptop everservic amazon good product good like offlin storedont buy product amazon bcz smallr send hp genuin laptoph issu right side touchpad slow rather i3 products\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
114     pro good look wisedisplay nice compar laptop price rangecon hang brows multi tab reliabl game even hang offic softwar like word excelnot go 8gb ram model work well\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
115     one like laptop may unexpect awar stay away laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
116     super ms offic instal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
117     product good havent receiv warranti card big fault amazon side accept look like amazon fraud custom tri mani time custom servic number isnt connecting\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
118     product good delhiv without warenti card without window 10so everyon buy plz check inform product dear amazon plz check issu solv beliv custom thank you\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
119     good look laptop full hd screen good sound quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
120     worthless properli support amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
121     nyc superb budjet dizz product consum data\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
122     genuin im happi product 4gb ram ok ill add 8 gb get robust experi overal good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
123     lappi slow take much time open chrome app u want use bought 3 product amazon none made feel happi buy product decid buy anyth amazon future\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
124     ok good laptop everi day task averag laptop price 30490there inform avail type ssd installed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
127     amaz product need add extra 4gb ram make best use without addit ram laptop get slow multitask extra 4gb ran cost 2000 nehru place kingston\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
129     hp product good workingalso hp support servic poor pleas dont buy hp product dell item better hp items\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
133     worth everi penny\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
134     recommend buy laptop laptop extrem slow hp support good solut problem\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
135     batteri sound build qualiti good i3 processor slow unless rare use laptop simpl usesag take otherwis go i5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
137     goodbatteri backup 45 fast charg nice sleek look game applic work well\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
140     good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
143     laptop durabl batteri life good bit slower side take around 325 min login windows\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
146     look good otw unsatisfactori product speed slow dont go \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
149     slowest laptop world dnt like valu moneydont buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
150     use much look good complain cost extra rs 500 book 28th prime custom 29th rs 500 less cost due prime customer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
152     system slow get hang easili ram low peopl choos product like laptop amazon physic verifi product stores\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
155     good hang bit may due internet speed issu ms offic paid version free claim amazon batter inbuilt cannot dismount sound qualiti good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
163     slow better regular use perform less 1gb ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
164     great product qualiti alway hp provides\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
167     overal laptop disappoint batteri backup good display qualiti good work slowli instal ssd upgrad ram smooth work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
170     good school office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
173     run like p1 systemmost time hang hang hand updat window everytime\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
175     nice laptop smooth keyboard good game window 10 given touch screen given laptop apart perform excellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
176     worth purchas product slow work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
178     work good ms offic included\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
181     got hp laptop friend realli work well nice product hp usual genuin servic amazon thank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
182     anti glare yesfor game goodport 9 pint 10in budget best option purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
184     batteri backup good speed littl slow nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
185     ok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
189     slover speed expect never buy costli electron item like laptop etc\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
195     batteri remov written remov system good slow work overal good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
196     get good condit system time littl slow wise goodon product one demerit driver softwar cd box receiv charger laptop box\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
198     window 10 work slow 4gb configur better 8 gb build wise ok fr 30k rang laptop go fr 4gb without os get win7\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
199     im truli satisfi perform laptop batteri backup especi consid cost paid thisalso get 10 cashback 6 month extend warranti laptop order vqr in1hop help help pleas press help buttonhappi purchasing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
201     good product dealer author accord hp servic centerdear mrm kumarstatu request closeddo repli email sent unmonitor automat servic see contact informationpleas note materi post notif confirm materi orderedhp refer number 5014623862product descript hp 245 g5 notebook pcproduct number y0t72paseri number 5cg7113gdsproblem descriptionport case url na\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
202     wonder product price got effect price nearli 17000 ₹ im delight itpro good batteri life last around 4 hour lightweight doesnt lag price great trust brand durabl excel daili usecon suitabl high end game do henc youv instal window yourself\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
204     bought person use im surpris perform super lightweight though batteri backup isnt good might last 2 hour full charg switch task super smooth lag even lot window open amd quad core processor show jalwa instal window 10 work awesom price point supercool product got next day im prime subscrib other might get late go jackpotnot check cover hp warranti past mani peopl face issu hp product bought amazon hp guy say wont provid warranti product bought amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
206     lightweight hp laptop less 20k worth dealth gripe bought offer period notic price chang offer period lower one fair amazon warranti alreadi found updat month bought sep 2018wa easi instal softwares\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
207     everyth fine work good except bluetooth tri driver hp download seller ship faster tri driver realtek hp broadcom intel\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
208     right hand side vertic line screen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
209     amazon deliv product manufactur 2 year ago receiv octob 2016 product 16 octob 2018 vga usb hdmi port alreadi rustedmoreov per polici coordin technician inspect product complaint rais product photo arent sufficienta per hp websit warranti start june 2018will updat basi respons receiv amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
210     demaretsthi product dont know instal window driversit humbl request amazon atleast provid network driverand even product detail mention laptop actual detail product differenti also dont reciev product detail voucher boxusb port one side work kindli tell driver instal thatmeritsbetteri life fair easili last 4 hoursfunct smoothoveral good instal window\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
211     daili work fine super ms offic smoothli run abd game non realli love mini laptop got 18k price rang recommend laptop best hp brand like perform equal core i3 amd a6 proffes good think amd a6 equal core i3 suggest go order it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
212     use 1 year develop good basic program frameworkbuild qualiti awesomemostli use linux osubuntu linix mint os work faster better smoother compar window 10\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
214     lap turn solution\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
215     realli happi productbut sound devic audiblepack betterthi first purchas amazon thank muchbest product best price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
217     laptop amd processor low budget home use laptop come dodpreinstal os instal win 10 64bit os download necessari driver hp web siteit moder laptop use net surf offic work display moder low end ham run laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
218     good budget laptop bought dad hardwar spec right daili basic usag offic app movi etc screen good qualiti view angl better lappi budgetth rememb doesnt come os also lack bluetooth go ₹200 bluetooth usb adapt work it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
219     build qualiti good batteri exhaust fast amd processor bit slow buy cant return cab replac check buy overal happy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
221     good buy small busi bought 2 till use week touchpad excess smooth might difficult use lagswork like intel processor go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
222     well 19k cannot expect alienwareserv meant forveri averag mousepadand ordinari batterydisplay great sometim window tripsbett get origin window\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
224     need price doesnt hurt pocket secondli hp reliabl assurance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
225     use laptop one day receivinglaptop came batteri adapt doubl seal boxonli do instal driver app need downloadednic lookno laptop bag suppliedoveral good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
227     product good come warranti seller alway back seat got warranti 10 month mani time contact seller respons ftom him\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
228     good product use almost 4 month nownic product awesom work speed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
229     screen develop line contact amazon sever time hp deni support feel extrem cheat inspit senior leadership team call back give sever assur get sort 45 days\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
230     everyth good u pay extra instal window antiviru outsid \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
231     super laptop valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
232     nice productandnic pricethank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
233     laptop good price ram inform correct go tri upgrad it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
234     fast workawesom batteri backupand interest thing fast charging\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
235     recommend per price rang work fine couldnt expect price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
236     ive use laptop 2 yearsim ju use basic purpos like studi watch movi etc perform well todaygood product cheaper price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
237     ok screen qualiti perfect screen bar line came prasent one scratch line displays\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
239     receiv chapati stone instead laptop good open front courier person plz dont believ much onlin product cost rs 5000 deliveri also satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
241     prompt deliveri origin product work well promis deliv thanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
244     usb socket good shapeless\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
246     good laptop basic daili need complet smoothli worth it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
247     good batteri fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
248     good product afford price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
249     best laptop price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
251     basic version need ms op instal separ bettter go version cost effective\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
255     good laptop 18k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
256     bit bulkybut still best rang hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
258     thank amazon much satisfi product far got genuin product lower price amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
259     best laptop price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
260     overal good product satisfactori perform except sound low\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
261     lap top ok expect advanc version henc return product pl collect product ramanagar\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
262     need help instal os\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
263     good batteri life poorperform averag bodi qualiti god\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
265     valu money nice laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
267     nice n l like lot n agood choic work woman easi carri also\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
268     nice laptop price home non profession usagearriv time overal good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
269     laptop nice use fast\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
270     good product less price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
271     great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
272     fantast lap batteri life also good it’ good work condition\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
274     good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
275     absolut brilliant serv purpose\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
276     awesom product 20k price tag support kind osdownload necessari driver hp offici websitebatteri backup 45hrsbuilt qualiti 45perform 455display 375webcam 45overal 425\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
281     good nice product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
283     realli worth 19k thank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
285     accord price good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
287     work fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
288     use laptop servic good \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
290     product better batteri perform good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
291     awesome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
292     good product accrod price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
293     best\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
294     good expect 2 usb port working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
295     good product hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
296     like\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
297     good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
298     good product range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
299     worth cost serv purpos well good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
303     good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
304     nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
309     ok normal work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
311     dont purchas bad product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
312     work fine now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
314     good buy basic function\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
316     worth price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
317     good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
318     nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
320     good screen quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
321     best laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
322     everyth like\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
325     good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
326     nice laptoplight weightsupport virtualizationbest buy within budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
328     good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
329     nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
330     good configurationspe also good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
331     good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
333     great product valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
336     nice 👍\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
337     run cool battri drainag issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
338     good product price segment\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
339     product worth money better choic middl class perform good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
340     excel product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
342     much better expected\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
343     good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
345     great product ✌️✌️\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
349     good one light compact\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
350     excel product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
351     good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
352     good products\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
353     excellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
354     excel product worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
355     great laptop price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
356     need buyinstal window 10 work perfectli recommend person know instal new os a67310 better 3rd3th gen i3 processor build qualiti good price rang backlight keyword awar optic drive vga port hdmi 3x usb sd card reader bluetooth camera 35 mm headphon jack awesom simpli plug mobil headphon even mic work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
357     good product 19k issu processor hardwar use sinc 3 month good student problem driver softwar usb 20 port unavail hp softwar site download lenovo driver make work issues\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
358     wifi connect activ even sever time driver instal effort gone drain still work onlin hp help center stillun fix issu wait servic man visit person fix it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
359     base week experiencegood product priceus ubuntu 1604pros1 decent amount ram almost regular prog run smoothli heavi file eat memori though2 good graphic run steam base hitman 2016 game though expect a6 apu3 decent build4 good batteri backup give around 3 hr backup stream video wire internet5 problem cool till let see hold summercons1 hour batteri backup would great2 14 inch screen littl smallfor verdict decent laptop price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
361     within two month mother board got damag replac warranti next day cool fan stop work rais case waitingedit cool fan also replac warranti promot rate two os crash blue screen frequent twice day sure hardwar softwar issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
362     realli awesom productin price rang ive use last coupl day didnt face lag issu neither heat issu would recommend budget rang 20k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
363     bought amazon use sinc last one month till time issu found machin anti glare screen great also smoothli work applic use window 10 bettari back also appreci 4 5 hour continu use light weight slim per budget fulfil requirements\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
364     laptop deliv within 3 day without prime thank sellerproduct cheap good perform touchpad respons smoothli window 7 overal excellentfor better perform replac hdd ssd upgrad ram 8gb 12gb 16gb\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
365     buy laptop axi bank credit card 24 month emi first credit card bill product emi includ complet amount statement bank say seller got delay convert amount emi complet amount gener credit card bill whoever delay im fuss\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
366     good product good valu money use 3 month doesnt keyboard light use dark problem bt everyth cover good basic use even program also use good enought android develop caus amd cpu arm base system imag slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
367     product sent defect left side 2 usb devic connector work use connect pendriv charger like wise devic time return pass even replac describ look nice extinguish fire enthusism\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
368     research ton settl laptop dont let price fool solid ad extra 4gb ram laptop fli interestedit 2 ramdimm slot 1 use 4gb free add extra dimm also make sure use ddr3l low voltag im sure regular ddr3 voltag would motherboard compatibleth stock dimm hynix ddr3l 4gb hynix hyundai electron divis boot win 10 x64 bit 7 second max extra ram realli make comput zip process ive heat issu glitch far month use love weightsolid finish pseudo brush metal type artwork around touchpad area doesnt feel like cheap plastic amd a6 one best processor great long life take care well older a6 dual core still run well almost 6 year cours clean laptop vent dust keep cool place amd a6 serv well dont wast money overpr intel i3 i5 etc gener processorit complet wast money plu intel lawsuit past faulti solder processor googl thing didnt like keyboard fuse laptop mould make clean keyboard harder thank bought keyboard protector still design better remov keyboard screen ok great antiglar matt finish default dont expect ip hd screen price point presentationsstudentsmoder offic work stuffi havent tri game wouldnt expect high fp laptopfind driver pc bit painbut donefirst instal hp support assist follow along check pc driver warranti etcor look similar hp laptop similar chipsetand use driver support pagelik hp 15g 221au driver work pc oh forgot mention audiophil love laptop sound qualiti speaker locat bottom your wrist usual restbut dt sound applic along realtek sound driver make best sound card imo long time userwil blow awaydont expect solid thump bass unrealist thatbut sound clariti volum loud good compar laptopsput good set ear headphon play dt settingswhich turn default gener window equal amaz sound clariti bass produc via dt applicationth webcam realli good great basic skype photo snap withthi comput bio rememb correctli also allow vt virtual technolog interest virtual machin simul softwar would abl thisth dvd drive slim dvd writerwith small profil quiet spinningreadingit rj 45lan port vga port hdmi port 1x usb 30 port 2x usb 20 port touchpad respons made synapt elan touchpad bit downer synapt make best touchpadsbut get job done stillno issu trackspe movementbluetooth good use realtek chipset connect first shotno issu thererealtek wifi chip good wellcan get signal 3 floor concret hous rebar sever wall btw need make sure get good wifi driver card work realli well default window driver give like 1 bar wherea realtek driver give 45 bar signal strengthplu set manipul via devic managercontrol pane recommend get laptop budget also buy keyboard protector saco brand make itsur laptop 2 year old term chipset probabl mid 2015 2016 term amd a6 7333 price point along come term port chipset well worth go buy itif review help pleas click like help button thank \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
369     great laptop prize give five star deliv window 10 installed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
370     took 3 day deliveri laptop best notic lag price rang best get batteri life superb use softwar dont buy use heavi code softwar otherwis normal compani use good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
372     amd a6 better i5 processor buy without doubttest gamesnf mw 20far cri 3prototyp 2pe 2017sniper elit 3mass effect 3\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
373     problem win 10 64 bit instal displaybright littl bit lower catylist driver installationbatteri drain fast web brows hse compscapp tool function smoothli instal ms officegimpgeanygcc compilarlibr officesqlphp apacherec instal ubuntu 1604 lt make dual boot system grub updat termin bring dual boot screen run flawlessli ubuntu toolow bright problem win 10 also resolv amd display driver configuration\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
374     good oneif gamer best choic price rang everi thing work fine moder use must recommend everi bodi seller also good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
375     absolut valu money want budget model high speed hard disk list busi laptop hp websit perform well price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
377     good productshould includ accessori like bagand includ cabel like hdmibi way good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
378     display laptop good instal driver pictur qualiti seem like display grainier jazzy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
379     excel product within decent price bracket perform excel improv higher ram good batteri backup 45 hoursdepend upon individu usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
381     nice laptop home use \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
382     3 day laptop complaint far yet stuff could better done well let compar aspect laptop one onebuildi bought laptop carri vacat outdoor part say firm one light weight notic whole feel plastic enough place rest hand type realli felt need keypad back light work dark top realli good textur hp logo though three usb port none 30 led light webcam right side laptop coupl hdd led notif surprisingli lan port lighton right side usual cd reader writer keypad tactil clicki front side card reader left 35mmjack hdmi back u swipe back batteri sideperformancei bought laptop daili code make present stuff amd a6 g4 radeon didnt lag massiv slow down though strongli recommend heavi softwar like adob game like gta 5 left outyet consid sinc amd compat issu emul expectedupd yet instal antiviru far sinc defend seem pretti good yet instal adob photoshop start lag game like compani hero tend lag littlestandbybatteri tend lag 3 4 hour depend usag though averag opinion batteryit detach slide two lock back bottom laptop pull pipe batteri outscreenscreen seem bright enough anti glare seem good outsid though sunlight shoot straight may creat difficultycamerait equip one mega pixel camera microphon quit decent one good photo taken enough light come low light prone distort suffici video chatsspeakerspeak bed bottom front laptop would rate 6 10 audibl fine nois outsid disturb audibl allverdictthi laptop good compactnessif averag user need product work like work excel sheet make present fine choic say plastiki finish perform consid money seem ok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
383     screen awesom anti glare batteri life decent keyboard good slight heat bottom much although summer yet arriv sound good overal price point excellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
385     perfect school offic use cheap beneficiao love one goveri smooth easi use must buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
386     got one day use itlov itno lagno stuckgenuin hphp product order amazon deadli combinationthank amajaan deliv time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
387     good product meet expectations\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
389     good laptop price look nice perform bad all\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
394     laptop seem good let see perform updat review usag receiv invoice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
395     simpl superb qualiti 👌❤️😻\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
396     good smart\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
398     batteri backup good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
399     name qualiti hp 1 tb hdd 4 gb ram latest 9th gener a99125 processor 5 hr batteri back fast speed 230 ghz 9th gen processor ie today equal 35 ghz competit good multitask etc time make mistak think similar capabl game laptop 21k best cheapest laptop buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
400     product deliv time even though prime member 👌setup system done ms offic activ hope perform goodvalu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
401     nice laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
402     fourth hp product run smooth batteri stay four half hour video stream full recharg took one half hour sound graphic excellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
403     bought laptop hp 14q cs0018tu 19k inr juli 2019 prime day realli fast nvme ssd read speed exceed 1 gb window 10 boot less 5 second probabl cheapest laptop fast nvme ssd toshiba kbg30zmv256g kabi laker pentium gold processor 4417u 2 core 4 thread less equival core i3 laptop thin light keyboard decent charg brick also small portabl suffici cabl lengthth major downsid screen subful hd 1366x768 panel that quit ok consid price point downsid notic two speaker symmetr place that nit pickingoveral im realli happi laptop great web brows productivityoffic work light program easili best laptop 20k inr segment handili beat expens laptop 5400 rpm hdd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
404     first got rs 19200 review per priceth bodi plastic shini plastic hp usual provid get scratch easily1 display fine good bad2 keyboard fine backlit keyboard expect price3 mous pad bit slow alway increas sensitivity4 gestur support there5 batteri life good charg laptop 100 watch netflix offlin 2 hour full bright earphon batteri drop 85 expect good backup6 game play basic game like gta vice citi ran fine expected7 ssd omg make huge differ pc boot 5 second even though storag 256gb worth make laptop faster hp i5 8th gen processor8 get 2 usb 20 1 usb 30 1 ethernet 1 hdmi 1 headphon jack 1 sd card reader ports9 speaker good loud tiny10 think small fan face heat issues11 webcam ok qualityoveral good buy 20k would definit recommend product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
405     got 19k prime day deal good laptop school student 256gb ssd reason processor 4417u power effici ram 4gb upgrad later resolut 720p cant complain priceoveral highli recom look feel like premium laptopwindow 10 great laptop come latest 1903 build easili updat via window updatefirst thing setuo uninstal mccafe softwar need use window defend built antiviru softwarealso uninstal crapwar like dropbox hp app etc\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
406     receiv laptop everyth expect display smooth sharp love window offic got activ thin realli light boot slow actual dont know write review coupl day go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
407      i great hope laptop realli need work expect laptop crucial busi stop work within 4 day receiv im stuck god know longi hope get neg rate show everyon truli isgarbagebottomlin avoid buy cheap laptop amazony get pay for\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
408     pro good entri level laptop super compact build qualiti light laptop easi carri keypad great come 1month subscript mcafe also come offic 2019 school edit sound qualiti pictur qualiti top class good home usag light offic work good option touchpadcon touch screen backlit keyboard extend memori slot rais 16 gb ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
409     faster high end laptop ssd technolog usedtri watch 1080p video youtub lag anywheresound qualiti good headphon speaker ok normal useboot time best less 10 secondsbatteri last expect around 45 hour moder useno cd drive requir nowaday issuewindow 10 home student instal activ lifetimeno heat spot oper ssd thinkwebcam good normal chat hd one still gooddisplay hd still good watch moviesnev tri play gamesweight less compar laptop rangeon downsid offic version trial need pay around 8k lifetim licensepspleas uninstal mcafe junk softwar first first boot window defend good enough protect pcprice oscil amazon track via eoffersindia get price drop alert buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
410     seem good custom specif fast perform 256gb ssd pcie nvme ssd nvme ssd even faster advanc normal ssd understand differ hdd fast ssdsbut per descript dvd drive pleas bewar thatpros1thin2handi weight less3ful hd4sound good5fastprompt responsive6pci nvme ssdcons1no keyboard back light2no dvd writer3microsoft product activ work properli devices4when use high volum speaker get crack sound5 vga slot peopl still use much issue6 usb cport7 usb 31let see work move aheadoveral best buy work profession decent perform 256gb ssd pcie nvme ssd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
411     bought back colleg laptop didnt disappoint friend consid bought anoth 1tb ssd whole set took offplay whole assassin creed black flag littl lag certainli playablealso engin softwar run smoothli never experienc lagexcept sucki wifi collegeoveral best laptop 20k buy anoth hdd youv got product power hous budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
412     deliv oer promis date product good condit hope hp good brand recepi make best use same\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
413     great laptop price got at195k batteri life decent 67 hour feel finish pretti decent great ssd make real fast bootup time 1215 secondsneg keyboard okay hd resolut price con well acceptable\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
414     probabl first one review 4gb ram 256gb ssd modelgot independ day sale 30390 10 instant discount sbi card peopl wonder perform 256gb ssd make perform boot faster 1tb hdd model perfect home use student use gamer photoshopmi advic go belong usag categori best config avail price point ssd 8gb ram 1tb hdd anytim alway add extra ram portabl hdd needed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
415     product good start lag first day look beauti doesnt work beauti yeh toh tatti hai cant even return it🤷‍♀🤷‍♀🤷‍♀\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
416     use month cant stop write review due ssd laptop becom rocket wow pleas note game laptop best normal offici workweb brows simpl edit etc\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
417     screen realli good display awesom laptop sleek lightweight howev batteri backup pathet best 34 hour maximum come 30 day trial mcafe antiviru free care instal anti viru softwar ensur deinstal mcafe anti viru complet instal ant viru softwar els system crash frequent similar problem restor factori set overal good laptop need better batteri backup\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
418     good product basic usag feel lightweight perform sturdi batteri good genuin window 10 bonu price point 😊\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
419     go ssd laptopsveri high perform speed win10 load 510 second kasperski internet secur i3 i5 price wont notic delay process speed par i3 processor also sdd weight light go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
420     everyth good performancesounddisplay game though super comfort slim light\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
422     amaz product stylist look photographi hobbi bought meet need sharpen pictur adob photoshop ever sinc start edit pic photoshop system work surprisingli slow i5 8 gb expect better performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
423     good specif world brand hp licenc window 10 suitabl colleg student cost effect problem ms offic trial version 30 days\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
424     excel purchas reliabl brand smooth os got 21k look like good deal 🤗\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
426     hello reader review laptop 5 day limit usag hope find review help make decision1 light weight good mac2 incredebl fast ssd window 10 boot less 5 sec3 keyboard qualiti also good sound qualiti also good stereo effect4 look premium product build qualiti good5 new gener lappi inbuilt batteri user servici part inside6 pentium gold processor good core i3 4 gb ram 256 gb ssd window 10 licenc copi bang bucksa decent laptop basic work like ms offic internet surf youtub etc pleas note config made normal offic use dont except autocad minitab run also made game like nf run allif clear use except laptop chota packet bada dhamakai purchas 20k great indian sale get prise brand like hp along ssd compar tradit sata hdd make huge diffan fast work premium feel lightweight like mac must buy like dump gig movi laptop purchas extern usb drive purpos daili usag ssd make huge diffar hdd also 2 usb 30 port make faster file transfer within compat devicespleas note dosent dvdrw drive batteri also nonremov laptop bag also providedi happi purchas thank amazonin make day\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
427     boot max 5 second due ssdveri nice window 104gb ram enoughrest finegood studentsi program daili stuff like read pdf watch videosit work like charmbought 20krealli good valu money productcomplet satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
428     1 take 45 sec laptop readi work for2 extern hardwar made lower qualiti plastic3 screen color ok dont expect much price4 light weight5 batteri backup quit nice6 ms offic recommend buy genuin offic snapdealcom ₹ 700900 range7 batteri remov like smartphon today replac batteri visit hp servic center\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
429     good work expect never expect window would good also use macbook pro seem par term speed resolut okay work dont need high resolut screen use person use high process application\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
430     light carri like bookcopydisplay minimum colour qualitylight speaker sound\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
431     start price point consid 20k one smoothest oper laptop use rang ssd disk work wonder batteri backup pretti good hous hold requir even beyond work perfect overal build good kind mat finish make even better scratch resistantconsid 14 screen resolut ok sound qualiti pretti good good valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
433     got laptop rs 162k combin exchang festiv offer smart thing hp laptop replac standard 1 tb hdd gener avail price point 256 gb hdd home purpos light offic work stream actual better choic ssd given better batteri life laptop pretti lightweight suffic home work combin preload window steal price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
435     laptop realli good deliveri also fast receiv invoic product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
436     hello bought laptop amazon sale exchang old dell i3 laptop best deal must say boot shut super fast due ssd usag minim web brows watch movi use ms offic etc perfect buy also use extern hard drive fulfil addit need space compar old dell vostro 3446 laptop great valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
437     receiv today first wasnt impress product averag look plan go natur silver colour unfortun check price ssd choosen buy one rather wast anoth 1015k perform wise product great batteri life also good screen resolut averag overal valu money product brand offer configur amaz price point got 18240\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
438     order laptop 18k bank offer great indian festiv sale laptop deliv next day packag great follow review use 15 daysperformancethi laptop come ssd price point trust make huge differ respons system boot speed window boot 45 second app microsoft word chrome etc start instantli pentium dual core come hyperthread mean 4 logic core decent perform come web brows word process video playback etc best part although come 4gb ram box easili upgrad 8 even 12gb sinc one ram slot empti also slot 25 inch drive anoth ssd hdd ad 256gb doesnt suffic word advic laptop come ton bloatwar sure uninstal needless game softwarebuild qualityit definit feel like expens laptop realli although chassi made plastic good qualiti there littl flex keyboard deck well screen keyboard key feel tactil good travel trackpad offer accur track reliabl gestur controlmedia consumptionth screen go decent bright colour arent punchi id like 14 inch display good size also resolut limit 1366x768 price guess realli cant complain laptop doesnt break sweat even play 4k video local youtub alway use extern display peac mind hardwar handl speaker get loud stay clear even high volum bass littl lack thoughbatteri lifeon light medium usag youtub video playback web brows word process etc got around 67 hour batteri singl charg laptop also come fast charg charg 0 100 2 hoursfin thoughtsthi laptop meant replac old desktop comput dad happi purchas your need secondari pc look comput replac old desktop parent use laptop definit taken consider sure buy laptop sale sinc particular configur normal avail 25k goe 20k bank offer sweeten deal further\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
439     im much satisfi laptop boot speed applic speed daili use applic like browser etc batteri life outstand comfort daili use especi type brows read book take note bought 13k amazon sale im happybonu point got appario seller genuin product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
440     bought check i5 earlier i5 hp laptop good came heavi comput task comparison one old laptop run simpl excel aggreg function one stood test frankli happi initiallybut use oper took hour complet saw froze frequent cpu hit 100 pretti fast guess freez due overh exhaust duct place way get complet cover flap could reasonotherwis work fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
443     firstli laptop lightth processor fast ssdi instal ubuntu wifi driver avail ubuntuonli downsid display cant complain pricebuild qualiti sub optimaloveral fantast deal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
444     amaz bought prime day sale 18k first time user purchas normal offic work three day use superb aspect thank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
445     laptop basic grade basic processor build qualiti also basic worth money price around 19000 amazon sell quit sometim recent increas price high 28000 definit worth price check ecommerc websit model amd processor still sold price near 19000\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
446     bought price rs 19000 price rang would say best laptop dont search internet go excel choic laptop fast come instal window os ask best buy far\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
447     good product hplatest cpuosssdddr4 make devic fastyou buy note book secondari work devic heavi user primari devic studentsnorm busi persons\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
448     good one poor speed key hard come preinstal ms offic spend extra overal old dell better one wrongli exchang hope better perform review also appear fabricated\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
449     look wise goodfor carri easi like 10 inch tabletbatteri back 5 hr moder usesom plastic niggl present need worrylaptop charger heavier laptopbootup time 3 sec win 10memori ad extra 128 gb micro sd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
451     got laptop offic even switch amazon servic go call twice het inspect return\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
452     nice laptop compact one excel perform high batteri backup give feed use one month\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
453     excel product never imagin would get product rs 19900 thank great indian festiv sale drawback find lack cd drive defici made purchas extern cd drive\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
454     handi light weight make lap ador good present peopl move overal good experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
455     go without doubt light weight laptop long batteri life 256gb ssd boost system speed highli recommended\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
456     met expect term speed form factor display qualiti enjoy iti one small issu power button small one sure press properli power led indic light side one bend sideway check power on\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
457     fulli satisfi excel product describ speed good look wise eleg light weight convini handl use last one weekoveral excel product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
458     realli realli good dealsup boost productivityinst app launch boot upsth nvme never let downmass bummer game though dont buy that mindbut one best decis ive ever made\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
459     one piec student look nice decent config low price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
461     fast boot crisp process due 256 gb ssd devic valu money price far respons i3 1tb specif deviceoveral built fine light display good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
462     hdd slow work ssd good experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
463     bought two day ago happi decis worth buy daili domest usag valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
464     love 195 k offer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
465     system slow updat drive reboot time larg rest best\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
468     fast entri segment laptop hp ssd make differ boot time processor latest add ongood light work offic work window 10 bliss go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
469     good batteri life best price perform much differ compar price rang 30 k laptop blindli go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
470     display 45build qualiti 45perform 355batteri life 45sound qualiti good 455fast boot time due ssd🙂😎veri good option 20k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
471     nice product got 20keveri thing good except display qualityperform amaz sound amaz graphic goodbatteri backup goodultra portabl window 10\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
472     busi purpos amazing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
473     bought laptop 18k amazon sale fast startup ssd light weight valu money good brows person use recommend product price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
474     good lack ruggedness\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
476     g8 price good perform work faster i3 laptop handl earlier\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
478     amaz laptop super sexi n wow perform ssd love make perform supersonic\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
479     lappi good littl bit overpr work fine day day normal work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
480     better expect fast happi purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
483     dont buy product stuck hang even drive instal dont go product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
484     horizont line appear lap top screen seem screen defect pleas contact supplier arrang replac lap top immediately\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
485     great ssd make superfast display issu great simpl homework uselight expected\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
486     valu money good product price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
487     pleas note microsoft instal rather good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
489     good laptop gaming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
490     love laptop good specif price especi basic comput need got discount less 20000\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
491     hp laptop alway good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
493     got product 20k thank amazon handi compact 256 gb ssd make fast good batteri life great buy normal user\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
494     hp laptop 14q cs0018tu 4gb ddr4 ram 256gb ssd drive past open window 10 home chocklat kyeboard good experi 👌\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
495     good product get scratch easili surface\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
500     good performanceus sinc one week nowfast deliveri fresh product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
501     superb note book good look light weight satisfactori perform itselfi think best thing u get 20k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
504     good laptop colleg studentsssd superfast\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
505     thin laptop till use profession use smooth fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
506     good laptop decent perform highli compat issu laptop 3 day usag good go students\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
509     best laptop rang good featuresso recommend buy laptop range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
510     good daili use light weight averag process speed okay purchas it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
514     good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
515     laptop deliv shown amazon websit photo attached\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
516     screen good expect good product price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
517     valu moneydu solid state hard driveit deliv even better i3\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
518     lightweight excel screen qualiti good comput power everyth need person laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
521     boot fasti happi laptop good buy anyon home use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
522     best small budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
523     it’ beast brows light offic work ssd work like charm boot time 23 sec\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
524     screen qualiti realli good amaz batteri life weight right\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
529     good laptop home school colleg small busi use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
530     good cheet custom name ms office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
531     great buy anyon look lightweight laptop colleg university\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
532     rememb lift hand hard drive may gone😆\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
533     total good per price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
534     nice 😀\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
535     ok normal browisn good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
538     worth buying\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
539     great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
541     good performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
542     laptop great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
544     light weight nice screen led good carry\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
545     better expected\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
546     best laptop price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
550     excel product valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
551     thought would great deal not\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
553     good product range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
554     yes\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
555     daili task easily\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
557     nice laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
558     best configur person use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
559     good 👌 quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
560     good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
561     ok product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
564     worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
566     best segment\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
567     best budget laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
568     valu money good speed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
570     like it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
572     great product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
573     good qualiti products\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
574     look good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
576     good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
577     good one\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
578     ok report\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
579     wow product price cant believ come ssd price realli good defint recommend someon buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
580     product achiev expect highli recommend price point\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
581     good product must go slim sexi laptop easi carri also respons good take 3040 boot bad gaming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
582     laptop price around 20000 lot purchas happen around price margin posit review made periodand advantag posit review increas demand amazon increas price margin 25k worthi product product best 20k averag 22k margin 23k recommend go product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
584     great hope laptop realli need work expect laptop crucial busi stop work within 4 day receiv im stuck god know longi hope get neg rate show everyon truli isgarbagebottomlin avoid buy cheap laptop amazony get pay fori want replac look 41tb amazon sent item 4256gb know well today 256gb kch nhi hager muhj 41tb mita h usk isly aur pais dene k lye readi huamazon hp ki market valu khrb kr rha hso ilsy dear sir apko kch krna pdega nhi ak time esa aayega jab hp koi nhi lena kyuki phle bhi hp tha mere perilsy mne hp ko liyabut amazon esa nhi chahata ilsy apko sochna pdega\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
585     bought laptop 20k10 sbi debit card discountmi varient 4gb ram256gb ssd boot time amazingit boot 35 secaft use 1week dont problem like hang stuffseveri thing good except screenyou cant use sunlightbut price good choic otherwis everyth perfect🙂\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
586     nice product worth purchas cost would better ms offic perman version could part osbatteri life also ok screen resolut nice light weight one enjoy work dont know gam experi normal offic studi purpos recommend product satisfi product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
587     order laptop may 11 saturday product reach earli morn may 13 monday kudo amazon deliveri worri damag scratch laptop well packedcom laptop im write review use extens 2 week review divid pro con cover featur laptoppros1 laptop light feather easi carri bodi slim metal look give premium feel2 boot time extrem fast take around 45 second homescreenpassword screen popup3 256 gb ssd drive primarili reason chose laptop4 touch brilliant extrem respons ink pen quick respons well your design ink pen act ad benefit howev util play around paint 3d5 multifunct smooth laptop doesnt lag slow switch one applic another6 21 featur also good use tablet easily7 window 10 interfac extrem easi use download android game app well app store8 get 1 usb 31 typec 2 usb 31 1 hdmi 1 sd card reader side connect easy9 batteri life good realli depend upon usag laptop 92 batteri bingewatch show 6 hour without need plug charger10 keyboard also wellspac get use space short main work involv type content write didnt feel chang type speedcons1 screen screen hd fhd like watch 1080p video wont get full hd experience2 ip inplan switch featur screen qualiti shift slightest chang need keep screen one angl enjoy video content even slightest shift angel lead chang contrast black level comfort experi overall3 volum fine loud enough play audio video larg room full peopl youll need good speaker entertainment4 laptop heat lot plug charg realli uncomfort level cant use laptop lap charg especi summer put laptop front air condition cool little5 though laptop sturdi id suggest avoid use 21 featur multipl time sayingoveral pro con laptop biggest minu point screen focus 256 gb ssd didnt pay heed screen resolut ip good buy im use entertain work without major concernsthi realli good laptop wish buy 2in1 laptop budget 4045k buy fhd display 14dh0101tu model spec one dont understand 101tu model wasnt launch launch day it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
588     bought sister freelanc must appreci look first use hour find much comfort use write overal access built textur look laptop quit premium touch screen quick turn tablet much quick keyboard get disabl dont worri keyboard get press mistakenli use tabletit fhd visual good speed far pretti much enjoyedi recommend laptop student freelanc artist writer also good travelingit could bit lightweight cost must high give thatth pen work cool go tri month see goe furtheroveral must buy consid price brand specif valu money overal get want specif go i5 version 8gb ram version model overal cool\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
589     preliminari review receiv laptop play day look beauti slim 2 1 look good tablet ink technolog amaz pen good better add screen guard need forc touch pen screen first i3 alway use i5 i7 speed seem fine see load bunch softwar ssd hard disk definit boost plan throw anoth 4gb ram stick make 8gb compens i3 perform far good updat laterfirst editit backlit keyboard modifi hardwar like ad ram ad bigger ssd difficult model found x360 hp laptop compact tightli pack like mobil phone batteri place insid could replac easili like older hp laptop definit inconveni peopl comput savvi keep updat laptops\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
590     think great deal work like charm skeptic buy overal good buy budget 40k50k come corei3 8th genm offic window 10360 degre tablet touch screen pen els needi feel slow well far howev review base 3 day use wait see someon write month buy it👍\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
591     first thing first perform machin i3 ssd complaint good look laptop sure love itbut biggest letdown display let tell consid laptop look full hd displaythi one hd display provid imag let display visibl overmor glass display pathetica reflect everyth make view difficult keep annoy timei updat get itupd use consider timemi biggest complaint display let admit honestli use find annoy ye would still suggest go fhd laptop buck moreactu hp given fhd price pointi bought 43ktouch screen gd use stylu alli think case everi custom samsung galaxi note owner know wellth stylu thereactu use minim purchas dont get distract hp pen advantag unless realli requir it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
592     much satisfi laptopfin touch screenstylu pen work excellentkeyboard sleekvideo qualiti markwork well write take notesbrows fastgot 40700 prime day\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
593     got laptop 42990 fair deal usual amazon awesom first let give conscons1 speaker get muffl tablet mode better placement speaker would nice2 upgrad ram void warranty3 pen use aaaa batteri ridicul expens come 2 pack mean time exhaust one batteri second expire4 i3 laptop heat fairli quickli fan stay whole time5 type c port support charg bummer make use power bank unlikely6 view angl could betternow pros1 touch screen awesome2 best use case studi ms offic work3 latenc pen less almost par appl pencil4 track pad use window precis drivers5 speaker good laptop mode6 ms offic inlcludeoveral worth it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
594     initi issu activ offic pleas feedback provid review abl activ ms offic come ms instal usabl henc chang rate 1 star 5 star thank muchth unit lightweight look reason price 2 1 overal good valu money 4 gb ram seem bit insuffici els serv purpos use system mainli document spreadsheet present yet tri penearli initi review chang abovebi read product detail get impress ms offic come part purchas represent complet mislead howev offic instal need purchas activ product detail etc chang clearli indic thisnot got deliveri last even review chang case find activ key seller provid same\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
595     work like charm first day hope stay amaz look lappi afford price go pray guy we’r good mood pack like mine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
596     best option student silent fast flashdriv base oper great buy pair extern 21 hp monitor usb keyboardmous set make excel desktop home portabl laptop away home legal windows10 msofficehomestud version make even valu proposition\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
598     purchas good deal exchang old laptopit nice built qualiti compar old laptop metal finish look premium light weight sleekboot time start shut time less 5 sec fast ssddisplay mukti gestur trackpad touchscreen pen use extrem use speaker goodbatteri backup video stream 78 hour mild medium use give least 5 hour use day singl chargegenuin hp product check websit 1 year warrantym offic includ need activ onlyssd storag avail 212 gbout 4 gb ram 2 gb alreadi occupi work done smoothli slightli laggingcon display hd fhd ipsno backlit keyboardno fingerprint sensoroth 2 model avail overcom featur cost 10k extramajor plu point ssd ms offic 360 convert pen includedthi best model market u get around 30k go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
599     fine 42k disappoit compani omit backlid led keyboardlicens ms offic outlook bundl pen funtion greatalso mous pad creak nois made 2 attempt replac one process request\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
601     good model medium level user deliv product one day actual predict dateboot speed realli good thing receiv product remov mani app realli requir touch averag qualitygot attract price old model\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
602     16th jul 19 receiv hp pavilion abl switch follow instruct next day switch provid pin blank screen appearinglet c get help vl update\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
604     best averag product turn dead pixel screen switch box hp support say contact amazon amazon agent set replac noon turn collect back better buy directli manufactur websit instead amazon third parti retail case box issu shuttl two without resolut descript say hd screen colour dull look like non hd window hdr configur set doesnt detect hd screen buy want shuttl amazon hp still dissatisfaction\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
605     amaz laptop fast touch good pen workingit complet worth buy think best laptop pricenot one issu batteri doesnt work near hp claim still descent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
607     look wise spec wise good laptop may purchas extern hard disc separ sinc variant come 256 gb sata\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
609     got product exchang i3 laptop work fantasticmcafe purchas one month expiryrest window 10 ms offic free fast respons constraint 256 gb ssd thank u amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
610     touch screen flexibl highlight avail brand wellscreen qualiti realli good game put pictur understand better visibl angles\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
611     read product detail got impress ms offic come part purchas represent complet mislead howev offic instal need purchas activ pleas check confirm whether offic come activ also tri follow instruct given one review would help kindli help regard issu asap\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
612     quit good product receiv good condit dont know turn backlit keyboard\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
613     bad review laptop suit awesom laptop peopl think touchscreen disadvantag laptop finomin also great game mine craft pc pc mode though turn tab turn pocket edit best laptop time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
614     amaz servic amaz deliveri qualiti product best market price thank \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
615     good product overallbut find touchpad slower side even though increas speed highestrest satisfi product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
618     handi lapbook fast worthydiffer kind usb port avail connect mani devic window offic instal kind great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
619     good buy budget touch screen awesom stylu respons batteri life amaz screen littl unstabl vibrat even fan worth it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
621     far work excel love user friendly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
622     best laptop budget categori ssd drive touch screen 8gen i3 processor light weight 2in1 laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
624     realli like keyboard touch screen laptop keyboard spaciou laptop bend complet 360 without hassl challeng batteri backup ok great \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
626     worri producta paid order date lap reach start use got valu worth money thank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
629     nice cool product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
631     promis product backlit keyboard keyboard doesnt featur bewar fraud amazon seller\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
632     good batteri life fast boot charg excel light user like me\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
634     good product deliveri time quick\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
635     good portabl lalptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
636     laptop realli good use daili didnt find issu far\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
637     screen qualiti wors worthi product price recommend\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
638     good laptop wait for\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
639     batteri life satisfactory\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
640     everth great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
641     good sleek\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
642     far good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
643     product nice suggest go either 10th gen fhd keep 2k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
644     perform ok audio output look like silent pc hp may kindli check sound issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
645     love itit give awsm look experi u carri like phonjust fold go anywhere\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
646     product quit good highli recommend purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
647     worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
649     osm great feelings\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
650     work awesom great valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
651     price awesome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
652     laptop costli slow work slow work touch qualiti good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
653     good choice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
655     good valu money fast due ssd drive\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
657     good laptop price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
658     full hd display would cherri top\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
660     good product well till now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
661     total worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
662     love valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
663     touch smooth display qualiti good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
664     good product fast deliveri satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
665     awesom speed good look overal nice deal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
666     except resolut everyth great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
667     amazing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
668     realli worth moneygo it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
670     excel product hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
671     nice product iam love 😍😍😍\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
672     nice producteasi usesmart locking\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
673     like features\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
674     one best laptop price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
675     everyth perfect except storage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
678     extrem good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
680     wow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
681     best product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
682     like product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
683     nice productvaluable\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
684     touch effective\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
685     love it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
686     cool\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
688     good buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
689     like laptop come good specif price also touch screen pen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
692     hp one best laptop ms window 10 256 gb ssd fast smooth\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
693     dont choos laptop worst within 6 month laptop display crash get support hp worst support hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
694     osm yrr bahut zaberdast laptop hai high graphic game mai thoda lod padta hai yrr bahut stylish osm yrr laptop ke sath ese fold kare tablet bhi bana skte hai bahut badiya 5out 5valu money product good agar aap lena ke soch rhe ho jao le lo yrr kamal ka hai product hp bahut light whiegt hai\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
697     keybord good also slow processor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
700     expect nice laptop price worthi nice specifications\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
703      the 360 featur great laptop fast perform appeal look much get valu spend key board super quick smooth function littl heavier though hp alway surpris innov product also amaz though littl lesser previou one bought spectr 😜\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
705     excel product user manual pen available\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
706     light small laptop easi carri origin microsoft os easi updat use upgrad pen depend use work fine need cell boot quick get product key instal ms offic seller provid activ keylong term see\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
707     like analys hoursdaysweek even buy product especi technic stuff review help youto honest super scare buy know hp good reput hardli review regard product detail one plu bought diwali sale time run purchas made prepaid manner sinc amazon doesnt allow cod product cost much return replac allow laptop yike thank homework whole 2 day learnt basic buy laptop type ram would prefer processor batteri strength etc search around lot decid one could get greatest valu lowest price anyon els technolog disabl pleas refer amazon laptop buy guid help lot understand want compar variou model narrow one accord prioritiesqu laptoplook 910 love silver textur look lappi give one star deduct told keyboard issu custom letter print dark gray much contrast wasnt issu coz alreadi fast typist type without continu search keyboard pleas look imag keyboard attach review judg yourselfi fast laptop 910 damn ye obvious initi setup took quit minut lappi super fast research scholar dont indulg game right almost alway like 2030 tab open simultan week month togeth far lappi 8 gb ram seem function effici even though ive got 10 tab open right deduct 1 star want see behav way heavi usag updat month usag chang rate accordinglyhow batteri 810 came 39 charg one charg 100 plug watch video onlin download brows studi stuff past 1 hour reduc 85 doabl happi one coz particular specif mention relat batteri usag specif except 3cell batteri mention ask tech friend said work upto 6 hour regular brows deduct 2 star jealousi coz anoth laptop hp avail touchscreen seri price claim 7 hour batteri life averag upto 13 max gave friend touchscreen one reflect surfac simpli horrifi reflect super sensit visibl side anglesif stand peripher posit anyway hope one prouder 2 star deduct also laptop 78 hour batteri life avail price updat check batteri drain complet heavi usageth screen 9510 reason hesit want reflect surfac screen absolut headach eye hurt plu get super scare look reflect watch horror movi ha anyway product surpris exactli want matt screen screen skinguard screen specif mention standard led backlit screen avail thought settl pleasant surpris matt screen reflect glare low even increas bright plu realli contribut laptop aesthet didnt rate 1010 greedi realli like lcd cover whole screen realli fond black bodi around screen basic like tv look laptop make sens higher screen bodi ratio price steal thissound 810 sound sooooooo much better expect clear loud deduct 2 star coz well like said greedi girl louder bettereas navig window 10 1010 tech friend advis go window 10 coz lagshang super glad chose listen use window 7 profession littl nervou switch transit super smooth everyth easier find accessm offic 2019 version 910 phd scholar imagin valu wasnt will compromis version tri activ show offic 365 version activ noth 2019 version mini heart attack 5 min tri use offic 365 version though automat notif came prompt updat current version offic home student 2019 version phewi love microsoft search featur show right though deduct 1 star receiv lappi week ago wanna use longer period time updat case issu come thiswhi buy onlin instead offlin price get offer buy hp laptop specif except 4 gb ram free goodi like headphon bag usb light pendriv etc 8 gb ram price kid brainer buy goodi 1200 inr new ram 4 gb differ plu instal charg would charg changemodifi old processor would amount least 4k matter prioriti goodi vs better processor aka speedi one issu laptop model thoughon keyboard 2 number button icon made whenev tri press invert comma appear appear press button thought malfunct hardwar mayb icon got misplac know small matter oh well mind wire tradit keyboard style wasnt look experi hour though becam okay oo like suppos first place strang sound weird anyway mention happen give hour keep use laptop normal still doesnt get resolv like mine magic contact custom support amazon ask replac irk enoughthank read lengthi review\n           
710     pack worst took parcel pack box amazon alreadi open insid hp product pack good laptop nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
711     use sinc month issu foundi recommend it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
712     good normal person use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
713     good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
714     laptop look good perform littl slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
715     good qualiti product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
716     laptop awesome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
717     valu moni good laptoplaptop battari 4 5display 4 5bot laptop 5 5overal perform 4 5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
718     good performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
719     look good perfect movi watchingsound also good system slow first day tab take long time open whenev system get hang take lot time restart hp custom support help give step system check updat want buy regular use dont buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
722     everyth good littl bit slow perform brows time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
723     good product good batteri time low\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
724     order lap 17 sep receiv 21 morngworst deliveri experi amazon come laptop amaz even better expectationsamd ryzen 3 awesom processor definit lot better i3 seriesit good game im use almost 3 day perform smooth quick im start wonder gave 28000 dell ryzen 3 laptop give 40000ryzen give pure graphic performanceif ur look midrang game laptop go best segment guy give bad review dont get confusedif u util full hardwar softwar facil thn ur gng love thisil give addit informationpros1 amd ryzen processor better multi thread perform compar intel i3good gaming2 perform u run highend game thisif u upgrad ur ram 8 gb run like pro3 m2 slot ssd4 fast charg take around 45 min charg 50 batteri inbuilt5 come window 10 life time validity6 come dvd drive smooth finish coating7 light weight 2 kg8 price best segmentcons1 hd display fhd2 batteri last upto 7 8hr apprx game 6 7hrs3 yeah heat littl bit muchif ur wellknown guy abt processor u come know heat batteri fast drain major issu amdit default im worri abt intel also heat problem ryzen next level processor amd handl heat batteri quit good compar amdlaptop dont worri abt heatingi strongli recommend u too\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
725     laptop great valu money sinc exchang old laptop buy laptop 23k go won’t regret mani upgrad option avail laptop improv perform laptop didn’t find laptop upgrad nvme m2 ssdso test laptop last week without upgrad perform well issu game photoshop continu brows mani tab openedthen upgrad wd green m2 240gb ssd sata speed migrat window os ssd wd os clone tool avail wd websit show signific improv perform brows photoshop cc speed increas game fp bought form md comput onlin rs 3500if budget go samsung 970 evo samsung 860 evo low priceth boot time reduc 10sec hdd around 26sec ssd 16 seci tri play gta 5 ssd load time reduc it’ playabl even lowest graphic settingsthen upgrad ram sinc 3gb ram alway use os instal adata 4gb ddr4 2400mhz ram rs 3000 realli improv overal perform laptop ram run dual channelth laptop came samsung m471a5244cb0ctd ram capabl run 2666mhz laptop motherboard support 2400mhz ram opt help hp forum comput expert find best compat ram laptop chanc compat issuesi would say buy ram adata ad4s2400j4g17r make sure take laptop technician even ram doesn’t support still won’t loos moneyi tri buy onlin doesn’t support mean can’t return productnow play gta 5 averag 30fp low settingsno photoshop edit lag appli filter effectsprosamd ryzen 3 perform goodcan upgrad nvme m2 ssd samsung 970 evo bestno overh issuesgood view angleactiv window 10 homefast chargingconsbatteri life max 4hrstouchpad preciseno backlit keyboardspeak averageram ssd slot easili accessible\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
726     order work laptop nice batteri life excel pictur slight hesit load graphic intens power pointnot game laptop excel work hors travel businessalso get 10 cashback laptop order vqrin83\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
727     upgrad ram 8 gb ram specif need ddr4 2400 mhz sdram 2 slot ad anoth ram isnt issu dont tri open laptop easi take someon know hp laptop well respons laptop improv tremend ram addit case someon need enhanc perform would recommend ad ssd m2 slot avail didnt find need ad pictur ram installed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
728     prosryzen 3 vega graphicssupport 16gb ramded m2 slot ssdpreload osal need portsvalu money bought 22k discountsconworst screen allveri slow hddexperi suggestionon initi day perform ok sometim slowuninstal mcafe use window defenderbest part addit ram m2 slotso 1st instal 8gb ram didn’t see perform improvementthen went 240gb wd green sata 3 sad clone os voila os load secondso 30k 12gb ram 240gb ssd 1tb hdd ryzen 3 els u ask\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
729     buy laptop use notepad would last 8 10 hour fulli charg time look laptop could stay work good amount time product hp 15 amd ryzen 3 156inch laptop 4gb1tb hddwindow 10 homesparkl black204 kg sold promis 13 hour long batteri well absolut fals writer basic need applic laptopcomput ms word ms excel paint googl chrome firefox browser bare watch moviesyoutub dont play game batteri exhaust 5 6 hour talk featur quit fast got fast data connect websit load blink sound qualiti great receiv laptop play song awesom experi friend look laptop long last batteri certainli good go option\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
730     best thing laptop processor perform almost i3 8th gen significantli cheap price got 22k 3k extra 4gb ram modul 4 gb suffici window 10 mani complain laptop slow upgrad 8 gb chang respons drastic hang up ad ssd could wonder though ad one yetedit final decid add ssd drive bought wd green 120 gb m2 drive rs 2280 amazon ad speed differ appar test result system boot 15 sec compar 40 sec earlier respons becom much better read speed good write great would suggest spend go wd blue samsung evo 860 expans write speed rang 500mb wd green budget user feel satisfi perform price paidedit 2 mani complain batteri backup expect initi use wifi moder bright get 45 hour max turn wifi use moder work like watch moviesnot ultra 4k resolut upto 1080p 720p backup around 67 hour work word excel etc backup 10 hour usual turn wifi save lot battery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
731     guy laptop good buy 4gb ram ssd slot lappi perform like anyth wd ssd amazon avail 2300 rs buy check version ssd fit lappyi got 22k cash back worth itveri fast touch pad goodbatteri last 4hr full brows got fast charg good me\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
732     deliveri quick got good price amazon sale laptop look quit good also abl open laptop one hand great come display averag cant expect processor amd 3 ryzen 2200 u good easili compar intel i3 7th gen 4gb ram enough basic task definit need upgrad 8gb plan anyth trust perform would great addit bonu m2 slot ssd instal ssd along ur 1tb hdd instal window ssd magic speed one thing like laptop sound low compar standard sound crack high pitch voic tri updat driver check sound set use still notic pass return laptopif ur look upgrad laptop good processor budget go buy sale never pay 30 k budget permit definit concid upgrad ssd atleast 8gb ram give signific speed boost tri game updat testing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
735     laptop slow start updat pend window updatesit work like charmjust go want superbb speed upgrad samsung evo 970 ssd 8 gb crucial ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
736     amaz laptop beauti sleek stylish also bulki perform fast remark batteri backup also commend crystal clear display audio speaker rich bass hd clear soundprocessor graphic perform magnific togeth overal hp given wonder product thank hp highli recommend side go thanks😁😁😁\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
737     price great laptop price offer hp 5 full star noth beat make better deal come preload win10 25k deal festiv sale great price perform new amd ryzen processor vega graphic match even beat intel counterpart perform per watt howev idea hp manufactur spoil perform win10 bloatwar load ancient 1tb hdd even littl 120gb sdd much better 3 star sdd 2018 order sdd discard hddthe worst howev screen don’t think seen worst screen life 10 year old vaio vgnn31mw awesom screen 2018 found reason laptop display 6 bit colour rbg model give 2 star can’t replac screen make extern monitor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
738     screen great yet put addit 4gb ram remov bloat ware instal firefox chrome use explor tweak laptop start fast hang batteri 4 12 hour recharg fast bought oct sale 21999 2000 sbi card instant discount rs 1000 amazon pay cash back price laptop better core i3 laptops\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
739     order laptop 10 oct got 13 oct suppos deliv 12 octso one day delay deliverybut fine problemnext packag poorit plastic air bubbl wrap laptop deliv rain got weti woori laptop got damag thank hp pacak safecom laptop valu fir moneyi got 22000 invlud discount best devic rangesound bit low accord rest hang sometim due low ram use addit 4 gb ram would work like beastdisplay averageno heat issu tillnow satisfi this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
740     price rang hp provid good budget laptop game play casual regular basi ram 4gb sometim use hang better put extra 4 gb left hang issu other edit work done smoothli auto cad 2007 run smoothli even race game okay battl field 4 bit problem batteri doesnot last 2 hr heavi heavi use last 130 hr screen awesom hp servic given good inbuilt microsoft offic even built microsoft awesom donot use heavi game use offic work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
741     laptop hang past 2 month warranti period respons amazon horribl servic even toll linesnot work landlin service\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
742     upgrad m2 128 gb nvme ssd anoth 4 gb ram good go upgrad laptop boot within 5 second awsom price point game also decent 6070 fp modern combat 5 batteri backup claim upto 10 hour hardli give 45 hour everyth fine yeah laptop light weight well\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
743     ryzen 3 good window 10 ms offic nice silver look attract kb mous work fine display look cheap view angl good littl bit heat like 4th gener processor batteri life averag instal anoth 4gb stick perform boost hope perform improv instal ssd m2 bu overal processor better i3 7th gener gpu weak nvidia mx110review 3 month use wow m2 port good instal sata m2 ssd laptop work like charm zero lag dual core ryzen 3 wana purchas laptop dont miss instal m2 ssd transfer windows10 ssd 1tb intern hdd storag only\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
744     prosgood build qualiti categori budget laptopnotebookno heat issu note finger cross test heat issu note review prior purchasedisplay color reproduct goodtouchpad respons quit good excel amazon custom servic replac provid within weekcon first laptop deliv issu batteri backup hardli ran 2hrs30min replac laptop provid amazon custom servic quit well 4hrs30min backup way far advertis upto 13hr batteri backup system get slower antiviru softwar installed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
745     futur gener ryzen base processor onlyadvantageo win 10amd vega 3 graphic ddr4 2400 mhz ram 25 ghz processor clock 35ghz 1tb hdd m2 slot avail upgrad optan memori extra speed system valu moneyconsdu corecheap plastic material\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
746     look wise excel cost wise extraordinari life time inbuilt window 10 wow camera qualiti usual other competitor speed usual 4 gb ram cant expect much fact specif overal valu money good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
747     valu money laptop hp better wait deal buy 25k festiv deal price show 32kiniti slow take around 2 minut fulli load window 10 read rivew suggest bought addit 4gb ram 128 gb ssd instal instal process find youtubenow boot realli fast window load within 25 secondsso better wait good deal spend rest money upgrad ram ssd final within 30k get laptop fast enough compar i5 power notebook thanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
748     pro premium look lightweight ryzen 3 lower pricecon batteri easili remov liitl hang need 8gb ram mcaff ms offic avail 30 day free trial\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
751     got laptop steal bought great indian sale 17000 includ 7200 discount return old laptop decent perform upgrad ram 8gb worth everi rupe abl play graphic intens game like gta v almost zero lag frame drop your student like game occasion need laptop brows gener usag go howev would suggest wait sale better offer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
756     youtub channel went abroad trip like 20 day good laptop edit video reason stop work 3 day left search lot mall amazon budget good need extra money final found bought itgood fast deliveri amazon next day amazon prime laptop arriv batteri charg fast good your use normal work like type brows handl edit softwar realli good ye slow cours expect 28k laptop render 10 min video 4050 minson suggest add extra 4 gb ram work good sure handl latest 2019 edit softwares\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
757     got 24k saleiniti use lenovo z500 i5 dedic graphic card surprisingli laptop beat benchmark say sure better choic i3 base laptop time4gb ram enough want lagfre perform upgrad extra 4gb ram 120gb ssd program like photoshop android studio start almost instantli hdd use take least minut lenovo take significantli longer competit old i5 rig one ryzen 3 own i5 dbatteri backup advertis 10 hr real world use give 45 hr web browsingprogrammingvideo playback still best rangeth screen fhd consid price expect good enough gamer cant say refresh rate use screen bad leastth keyboard good good programmersspeak decent good badm2 slot big plu instal ssd see thing blaze anyth everyth throw itport get plenti port usb port seem bit tight though addit usb type c would greattrackpad good too\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
758     write review 7 month usebrought great indian festiv sale 23ki usual use code current use arch linux gnome 332pros1 come offici window 10 home lifetim license2 batteri backup good last 4 hr continu usage3 inbuilt speaker sound qualiti loud good4 come apu comput intens program benefit it5 key good less noise6 inbuilt camera qualiti good7 support m2 ssd work concurr sata hard diskcons1 ram 36 gb window 10 use 24 gb standby2 hard disk slow boot time long3 f16 bio updat broke support sever linux distros4 due new vega graphic hard set sever linux distroin opinion laptop recommend game limit vramon may reduc boot time load os ssdgame play ram upgrade\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
759     purchas laptop 22k exchang old soni viao valu 55k attract laptop extra ram m2 slot upgrad bothi never realli believ claim batteri life 13 hour consid naiv last around 34 hour continu use think fair enoughday day app like ms word ppt pdf reader work perfectli fine old soni becom realli slow open appshowev gripe horrend display screen resolut view angl pathet like hd stuff pleas dont bother laptop screen immers highli reflect cant use outsid daylighta budget option ok rememb option upgrad ssd upgrad ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
760     use day day task exactli expect upgrad suggest 1 m2 ssd reduc boot time2 anoth 4gb ram reduc lagwith two upgrad feel like xp macbookif requir relat game edit video go ryzen 3 vega actual better i3\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
763     first isself complet laptop give option make good machin get laptop pricehardr extremli slow though show 5400rpm bleviv work like 10 year old harddriv worlsboot extreami slow take around 1 minut turn complet remov av hp product softwar come preinstalledcopi process also slowgood part m2 slot m2 ssd hardriv os believ see 10 time differ boot time compar disksecond good thing 2 memori slot add 16gb memori small problem notic memori ddr4 ram 2666mhz higher mention specif plan upgrad memori paral pleas buy compat memoryrest everyth seem fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
764     want tell laptop open properli take lot time open think problem processor want replac give anoth return purchas on1 june contain 1year warranti within warranti period plz help me\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
765     order laptop 14th receiv 19th averag speed deliveri far laptop concernedit top notch long dont sky rocket expect best laptop 30kpros1ryzen 3 pretti fast cpu perform mile ahead intel uhd 620630 gpu performance2handl regular work well play 4k video youtub without stutter use day day purpose3it handl game quit wellat 720p obvious add anoth 48gb ram 4gb ram quit low play recent game 4gb ram even adequ window 10 nowday leav asid game want good stutter free perform get atleast extra 4gb ram4i use emul purpos well got good perform pcsx2 cemu cpu intens intel doesnt play pcsx2cemu well enough even lowest set intel gpu support cemu play retro game limit budgetthi best budget option5 premium look laptop sparkl black finish6ha two usb 31 port provid fast transfer speed7ha m2 portwhich much faster hdd upgrad storag plan shift os m2 give seriou boost perform budget laptop dont facility8metal finish around keyboard give premium look9pretti loud speakers10no heatingget littl warm full load11good screen12not heavi 2kg isnt much consid 156 inch screen13charg light weight becom import carri daili 1 hour backcons1pathet webcam that normal found laptop one thing dont understand manufactur dont add good webcam nowday 2024 megapixel cam mobil add good webcam laptop2not great view angl screen also screen reflectiveso caus problem day time lot reflect creat distraction3 mayb problem unit usb port tight struggl insert remov usb cabl etc4not soo great batteri life claim descript even use econom way possibl get around 67 hour batteri life though much better normal laptop still much less claim 13 hr batteri life mayb acheiv futur optim bio driver5wobbl screen carri handoveral fantast laptop price pretti happi dont skyrocket expectations\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
766     coupl week sinc got laptop far good touch wood 8 year use mac decid return back hp first time use window 10 must say impress perform far good thing upgrad ram plan soon simpli im tech geek way instal ram make laptop lag way ryzen 3 processor also nice slick make sure routin updat preinstal devic driver order make sure get devic improv overal good work game web develop etc batteri quit decent lightweight lappy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
767     due less video ram cant even work adob photoshop cc 2018 show enough vramit show pure perform asphalt 9build midrang gameseven high rang decent game perform batteri life almost mention network connectedit doesnt feel much heavyi bought great indian festiv salegot 23990for rate awsomeim sad vram issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
768     one monthgood till nowth disk slower sideinstal wd doubl notch ssd ad 8 gb kingston 2666 ram work like charmstil total cost 30k total hope insid pictur help\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
769     order laptop 24th dec got christma morningi expect perform slower side consid 4gb ram pleasantli surpris see quit fast howev still add anoth 8gb ram make total 12gb caus ram better iswil also upgrad 240gb wd green m2 ssd migrat os caus definit boost performancehav said would certainli recommend laptop caus right box great good valu money plu highli upgrad compar laptop categori price pointamd rocks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
770     good look laptop price ryzen 3 onboardalso there window 10 ms offic 2016 includedperform wise accept given price point day day task handl easili minim hiccupsupgrad extra ram ssd help much better perform sureth batteri pretti averag okay consid price point last 34 hour moder usagedisplay antiglar strain eye headach expect prolong sessionskeyboard tactil placement key could betterinstal pub g lite play one match playabl dont expect butteri smooth perform upgrad ram 8gb helpdual speaker adequ loud close room volum headphon jack amazingoveral pretti solid offer current price rs 28900 offer 2k discount sale killer dealsur recommend upgrad invest 56k ssd higher ram diwali time post second thought then\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
771     high expect read good review decid go terribl first thing notic display plain bad hd describ look like 360p mostth page pixel display realli look like peopl would use eighti steve job visioneri work seem product yet move stuck damn might look ok 35 year back still 10 day replac criteria guy amazon respond well discov second problem time one key keyboard seem work check damag look like hardwar issu contact amazon told updat driver hp site tell fix clearli hardwar issu download softwar support may call thatyet instal driver still hardli improvementmi question amazon thisi buy sinc 2015 use one account that 3 year almost overlap amazon begin india think deserv better that it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
772     review say slow 2006 build compaq xp os 256 mb ram use load imag file millisecond one 4 gb ram take 3 5 second xp os cd size less 700 mb one secur updat alon went 6 gb day oper system heavier slower seem must heavi protect mechan comput user technic expert dont know said upgrad ram gb speed less 20000 laptop good buy batteri last upto 6 hour mc afe anti viru 1 month free ₹600 buy 1 year choos one devic option win 10 lifetim validityusb port close cannot believ simpl factor went unnot hp feedback complaint usb port place close laptop year left side laptop 2 usb port place close never put two otg sandisk flash drive time first one block entri second flash drive put 2 usb port close matter concern point possibl million user worldwid design must separ two usb port atleast two three inchesmak sure switch option instal softwar outsid microsoft store one unauthor program microsoft store download program stall alreadi slow laptop happen background dont know happen two three day suffer move everi level minut time second switch system forc press power button laptop restart uninstal program outsid microsoft store made system workabl noth wrong mcafe anti viru program protect must strong reason hp recommend mcafe anti virusther light indic laptop keyboard one must press either cap lock button mute button remind lap run day peopl preoccupi absent mind tend forget whether switch lap whether screen display goe blank minut idl period one must look sideway right see light glow often dont caus lap run insid good reason light keyboard near spacebar would better laptops\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
775     one practic useless laptop that good liter noth freez 5 tab chrome load low graphic trade chart good even use word processor 3 word document caus continu freez lose much time everyday made mistak budget even dont money buy budget laptop pleas save buy better configur pay use emi payback\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
776     laptop good dead slow ram 4g enoghhp describ requir ram normal operationonli start work normal use diabl disk write coach uninstallatio viru softwar provid laptop use laptop day day use ram upgrad 8gb wil help laptop normal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
777      product much good like game laptopand support bright\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
780     deserv even star normal take 7 minut start profession usag limit browser ms word watch video music though take much timeupgrad must els feel work grandpa age also easi upgrad remov panel daunt taskmi core 2 duo start work faster unfortun purchas 2 laptop see endors 8 hr batteri etc big trapsuch big intern compani hp care grow brand market trust custom sake sell junk troubl customersgo laptop rang 15k instead satisfi instead wast valuabl time junk\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
782     work properli speed slow batteri life shortamazon help return product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
784     good laptop budget pretti useless without ssd upgrad ram expans hang like anyth even mild brows light multitask good thing m2 ssd slot dual channel ram expans updat bought samsung evo 860 rs 3999 adata ddr4 ram rs1599 amazon upgrad beleiv laptop work like breez boot time reduc 25 sec 2 minuet load time also quick without ram expans ssd laptop useless weight best budget segment\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
785     point cover earlier regard import need upgrad ram 8 gb els somehow laptop much use os take close 3 gb ram noteworthi also bought one asu laptop day intel p howev batteri life ram usag much better consid price point os 4gb ram hdd apart dont see benefit laptop laptop usag usual brows movi bit offic work ssh termin c program etc howev benefit game evid much better doesnt hangcrashoveral warranti support far good hp support hear tri solv problemi guess imper extend warranti need purchasedhop help thanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
786     got laptop sale 22k discount seem good valu money product regular everyday use heavi comput gamingmcafe seem come preload lot laptop day eat lot cpu disk util make laptop slowlaggi need uninstal mcafe instal altern like eset avastnot doesnt easili remov batteri like convent laptop one probabl need unscrew remov entir base access batteri compon like ram hdd wonder batteri easili user replac know open base panel daysalso want upgrad ram unabl get exact ram spec tri bio specci doesnt show brand name guess ill physic open base get access hardwar see itdefinit would much much better 8 gig ram ssd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
787     purchas laptop diwali sale use month find complet valu moneyamd ryzen 3 processor better intel core i3i even upgrad ram 8gb process becom fast 4 gb ram also perform goodanoth advantag avail m2 ssd slot laptop rang provisionoveral suggest go laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
788     beauti product hp complet fell love devic first day light weighton spec front decent processor ryzen 3 graphic driver play game easili high end good laptop engin student gener purpos daili use also slot m2 drive futur im plan upgraderam also 4gb b upgrad 8gboveral product fantast price would highli recommend it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
789     laptop good expect need 8gb ram better perform extra hdd slot fyi noth much surpris laptop got high fp play dota 2 good normal batteri life4 hr normal weight\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
790     would like inform everyon pleas pleas dont buy product know u need cheap best laptop product realli cheap worst product trust far better buy laptop respect store rather onlin bought product realiz sell 19990 actual price 22000 laptop old model e2 seri pleas request u dont money instead see offlin \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
791     overal im happi machin one fear heat issu processor heat much especi multi task littl longer durat hope itll creat problem longer runit perform almost equival i3 graphic perform like medium load game work even better one i3 processor heat big time problem multi task especi play game watch movi video long time laptop heat much experi weird problem got much heat play weird sound minut restartedbatteri life good ye itll charg quickli itll exhaust like hp machin claim larger effici batteri life list page true all\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
792     bought laptop great indian sale 22k deliv fast well immedi deliveri upgrad ram 8gb win10 quit sluggish start test outi play follow game low settings1 pubg mobil emul fp 30402 csgo fp 30603 fifa 18 fp 351024 fortnit 33425 gta 5 fp 30456 rocket leagu fp 907dota 2 fp 608 dirt ralli fp 80100thi show perform wellbatteri charg super fastand drain superfast play game lest give long backupdisplay qualiti okayspeak okoveral good packag 22k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
793     good laptop price 23000 rupe plu 1000 amazon cashback final price 22000 rupe good ms offic brows may good program use heavi editor like visual studio etc light weight batteri backup 56 hour medium bright didnt check game all\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
794     bought laptop cheap came ryzen 3 processor want midrang optimum laptop work includ daili use photoshop effect due microsoft window os lag howev add 8gb lap sodimm 2400mhz ram 12gb total would help latop work want without interupt work distributin thread work awesom handel well cpua play game know good graphic part howev help effect much faster old laptop thankx hp thankx seller price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
795     good product good price sound qualiti high good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
797     handi light weight serv basic purpos laptop wouldn’t recommend game though ryzen get multitask run multipl applic simultaneouslyout box warranti 3 month spoke hp extend warranti one yearm offic trial versiondec batteri life typic laptop display good valu money buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
798     hello guysaft 3 day consecut usag im write reviewwhat like product dislikepro cons1 gener purpos learn educ code manual small busi laptop suffici term build qualiti give premium feel person like glossier look jet black laptop2 wide screen less bezel give hepat feel watch video youtub social media also give bright color eyecatch output watch movies3 let talk insid laptoprel built app give lot app free use usabl necessari app alreadi need daili usag like talk microsoft edg web browser also much fast respons unlik firefox doesnt lag consum much datacons1 batteri life suck mean realli suck less 4 hour fulli charg one thing good charg time get charg with 2hour thank fast charging2 graphic ok complain material3 mani updat window 10 hotspot consum data one houroveral good stylish look laptopi would recommend budget less 30k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
799     excel product rang window 10 decent 4 gb ram extend upto 8 gb 1tb hardisk processor also nice light weight supercoo look smart easi carri search mani product rang final decis product nice product amazon hp thank you\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
800     better i5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
801     got 25k use sinc 2 month dont issu yet havent upgrad ram anyth sometim start slow price think laptop realli worth iti use brows daili tasksth display nice big speaker pretti loud enough even video call quit clear satisfi purchaseif find anyth els worth mention updat section \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
802     valu money laptop u expect price rang best normal use like document inbuilt window 10over nice product thanx amazonalso thanx give 1000 rs amazon pay balanc 😀\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
803     use 1 weeki bought normal ms offic littl entertainmentpro valu money 27kgenuin win 10good view anglebatteri charg fastscop upgrad u wantramssd video edit done afterthatusb 30 portdvd writergood normal student usecon seen till price thing want backlit key possibl price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
805     prosdisplay goodspeak output okaylight weightbatteri backup okaygood hddconsheat issu theretak lot time load windowssuggestionsfor window 10 better go 68 gb ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
806     laptop extrem slow laggi issu start within first two week case return window one laptop restart randomli coupl time day custom care team also unabl help process contact hp get warranti claus activ pain far 30 day receiv requir support would strongli discourag anyon purchas product ardent hp fan purchas product anymore\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
807     laptop great except one item keyboard design realli poor silver top key grey letter near invis function key number miniscul font grey font think regular design went holiday keyboard design realli would like give three star due huge factor effici usabl need light shine directli keyboard see key properli otherwis machin great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
808     recommend slow aspect upgrad systemf minut work take one half hour approx\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
809     great laptop price featur amazingdesign good sleek processor also good buy amazon sale good price valu money realli happy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
811     product ok speaker work day 1 cannot understand basic defect get even push btw deliv non boot laptop 1st amazon promptli replac new one speaker issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
812     wors laptopmi old acer d270 mini laptop intel atom processor perform better piec garbageus laptop even open 5 6 tab browser open app take 40 second responsedont buy ryzen 3 slower intel atom processor vega 3 graphic fill configur use all\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
813     screen qualiti good cannot view differ angl straight view light keypad henc cannot type low lit room becom slow fast even though ampl ram memori space\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
814     purchas product recent exactli describ initi got ms offic activ relat issu seller help immedi resolv issu work fine im extrem happi productthank amazonand thank genuineoriginal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
815     updat 161018 alright next updat work smooth butter provid step wise alter made speed laptop1uninstal mcafe window defend capabl enough protect normal threat unless malici site open user case use avg pretti light ram2 go control center window updat keep run updatesrestart boot up show updat avail similarli hp assist download driver requir laptop eat 2 hour time necessary3 updat done go task manag start disabl ever process dont use like microsoft one drive etc4 task manag go view tab updat refresh speed highest5 start bar comput window manag manual updat processor speed 100 batteri ac poweraft set find laptop boot real nice 30 sec lag oper multipl window video heavi word excel filesupd rate 5 star now111018 grt pdt crash within 3 hr much comparison i3 ane i5 amazon wont replac till engin visit 2 day see wht post herel updat 2 day \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
816     amd robust ryzen latest develop speed screen spectacular wled rug bodi high aesthet enjoy \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
817     got 25kgreat buildgud display decent processor light gamingit doesnt come bagthat downsidefor 25kit great buy me\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
818     time taken charg high emblem razen radeon laptop shown previou custom actual matter im use first day laggingi mean time open folder play video take time think return back\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
819     best buy laptop 30k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
820     amaz laptop price rang upgrad ad bonu fir gener use one ask would realli recommend ad 8gb ram game wanna play gta 5 without lag meduim graphics\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
822     processor extrem slow wastag money time dont buy disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
823     good laptop price rang realli like total satisfi product thnk u amazon secur safe deliveri product guy go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
824     honest review one week usageif search better specif 25k budget go itprosgood batteri backupfast charginggood audio effectshd screenconslittl bit laggycon matter laptop budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
826     worth money except cannot handl 4k 2160p well handl 1440p hd well good simpl game expect much graphic wanna smooth experi play good daili life offic work tooat end would say well tri invest someth like features\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
828     good product consid price solv purpos like heavi game multi task brows activ heavi usag easili go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
829     pleas give seller number brought hp laptop hard drive get corruptedso replac help warranti period hp compani lost data also window 10 licens copi product keyit ask purchas window licens copysel must purchas copi serial keyso pleas give contact number\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
830     good build qualiti stylish design impress price come usag utter wast exampl open chrome browser take 30 second load type someth brows appear instantli take long time appear take long breath use laptop good laptop medit practice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
832     wud recommend slow process kind headach click play video even take 10 second execut meanwhil anoth thing want laptop almost impossible\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
833     best valu money laptop come amd ryzen 3 processor 2 gb amd vega graphic good machin photo edit game screen feel dull bright apart spec goodit suit colleg student academ works\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
834     sixmonth batteri stop charg good look laptop basic work like media brows realli slow alway heat cant keep lap\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
835     processor slow tri add anoth ram anoth slot add anoth 4 gb ram ad total 8 gb ram speed ok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
836     laptop terribl slow take 10 20 second launch app open window explor etcbrows slow use ms excel slowi instal window updat restart laptop multipl time still fix issuewont recommend product \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
837     slow upgrad wd green ssd 240 gb addit 8 gb ramit start respond fast boot time drastic reducedclon os hdd ssd acron software\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
839     awesom laptop budgetth laptop fast enough batteri life averag dont get worriedsound qualiti good design impressivebut ram upgrad suggest futur better perform still enough speed default configurationdont go i3 7th gen processor got it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
842     brilliant product need extra set ram better perform first order got deliv one day order one look perform gift product deliv delay even prime membership seller dont reli deliveri date want gift someone\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
844     batteri aspect good bad also screen antiglar seem doesnt havea eye get burn irrit feelbefor buy pleas check manufactur date reflect onlin warranti support softwar updates\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
846     defin best laptop good choic price point watch movi last 4 n half hours\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
848     within 6 month screen got white patchescontact hp warranti say kind issu cover normal warrantydisappoint hp well amazonif say got 1 yr warranti cover itdont buy products\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
851     dear friendsdont buy leptop well hp laptop bcz bought leptop month kan 2019 hang slow provid kind servic tri reach last 3 month contact\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
852     use personalcannot take heavi load like video edit high end gamingw use casual movi watch ms offic purpos valu moneystil problem product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
853     work well offic use dont expect anyth want play game wont even run gta v\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
855     use almost month honestli complaint get bit slow time that someth fix great budget laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
858     purchas 9th june 2019 start found right click work also plug charger show charger plug chargingalway wrost experi amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
859     nice worth it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
861     best laptop rang 25k love speed new ryzen processor way power expected\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
863     take time open app also updat app work normal overal nice product rang price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
865     worth buy display good sound qualiti also good deliv earlier amazon choic perfect\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
866     design okit lightweight alsobtit slow laptopatleast dont know particular peicebt dissatisfi performancethough good day day usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
868     valu money nice perform even 4gb ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
869     got fool read good review system slow os keep hang use 2 week alreadi caus lot issu dont buy expect much better\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
870     processor okbatteri long 3330 hrsi realli want batteri backup\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
873     unfold press power button even abl start fan sound high silenc working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
874     nice product hang sometim wise price u cant expect more\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
875     brought 25k diwali sale nice laptop casual littl bit heavi usag face problem yet batteri main highlight use program work well without issues\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
878     mostli expect perform decent daili offic task light gamingbut littl bit slowsom hp i3 rang perform better mine laptop slow someth else\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
879     look pretti goodbut batteri back longeronli 23 hoursscreen qualiti nicesystem oper slowi think need improvement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
880     superb qualiti product good describ imag deliv within 24 hour prime custom function specif describ site go best buy summer sale\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
884     nice productand ryzen 3 realli better intel core i3 7th gener amd vega 3 graphic batteri maximum run 4 hour full charg mild browsingsound qualiti slightli differ okdisplay qualiti also good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
886     bought 24999 plu 10 discount ad 4gb ddr4 2400mhz ram 2700₹ product readi 25k rupe beat intel i5 perform spec definit new ryzen cpu product worth buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
888     good product price use basic work students\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
890     excel product hpbut need upgrad 4gb 8 gb ram work well laptop extra ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
891     batteri life describ last 3 hour pathet weigh worth\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
892     nyc laptop valu money bcoz main isko ek mahina use krne ke baad bol raha hu main isko 22000 liya tha total worth next month ismay 120 gb ssd 4 gb ram bhi upgrad karungaaa nyc perforn batteri life nyc product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
893     deliveri good got one day display qualiti averag batteri perform worst doesnt come even watch movi drain fastlyprocessor perform good quick accessing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
895     good basic need like internet surf watch movi good buy price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
896     best laptop ever made histori hp buy without worri nowher get kind laptop 21k perform littl slower \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
899     would recommend game random offic work okey\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
902     price best loptop play asphalt air bone game frame drop hang problem pubg perform 5 multipl task keep memory\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
908     good laptop price purchas diwali sell cheep configur happy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
909     plain languag want watch movi listen song buy rest good work even c programmings\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
910     best laptop 25kperform good look great batteri nice great fast delivery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
911     best buy student normal use best laptop 27k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
913     would appreci seller sensibl enough provid atleast laptop sleev bag keep laptop good price mere expenditur 600r wont big loss seller\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
914     nice laptop amaz price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
915     bought 15 day ago mark work condit good laptop deadslow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
918     good day day use mild edit program work increas ram want work intens it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
920     good colleg student home use like brows watch moviessom offic work heavi game bit laggi price perform ratio great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
922     bought exchang acer aspir v5 intel i3 laptop sinc pentium gold processor almost except lesser l3 cach memori 3 mb 2 mbthere absolut heat issu due ssd fit requir day day brows read video etc good laptop pricegood price old laptop card discount icici due diwali sale\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
923     day love product light like larg font keypad pre instal window 10 easi set love \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
924     initi impress excellentlight weightthintravel friendlysup fast bootingdu ssd hop laptop last longlet see happen due cors time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
925     item describ super fast deliveri review laptop week use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
928     great product great price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
929     good buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
930     slim light weight easili carri travelinggood batteri timemin 5hrsfor offic use best one\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
931     fast good regular officehom work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
932     laptop decent display boot fast price howev microsoft offic mention list 30day trial version howev vendor conveni mention microsoft offic avail without provid hint trial versionwhen call amazon custom support told 1 product 30day trial clarifi user answer 4 product 3 user answer complet appropriate2 ask purchas licens 8kthi complet caus decept advertis vendor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
933     receiv today done basic set origin window 10 ms offic 2019life timesystem pretti fast term bootingthos complain ms offic 2019 30 day first understand activ ms offic 20191 first creat outlook id like creat gmail yahoo2 left side bottom search box type excel click excel3 ask activ click activ enter outlook usernam password creat alreadi having4 enjoy life time5 meanwhil dont click offic 365 bcz life timei hope enjoyreview 15 daysystem superb fast term open ms officegci laggingthos complain hang updat system even bio alsoonc done wont find lagmeanwhil dont expect speed your boot first time311019 updatewhen click ❓in right bottom open hp page got 4 updat seem import updat bio bluetooth lan wifi complain system slow updat may helpful\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
934     dont buy 3 month time hard disk conk offlaptop pretti slow incur expens 5k get new hard diskamazon larger period return window sensit product like laptopactu loss buy laptop sellerbett go offlin store like croma exclus dealer brand\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
935     8gb ram 256 gb ssd i3window 10 homem offic home student lifetim word excel pp onenot ms offic 365 one month trialth featur good price got 28kgood code browsingth boot time fast thank ssd use space well dont dump unnecessari file pcveri lightweightbatteri backup goodvideo qualiti good integr graphicsnot great gamingmi verdict want pc code brows stuff one best budget lag literallybuy good extern drive hdd store stuff like movi song etcscreen qualiti decentbatteri life goodlight weight\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
936     laptop sleek lightweight product startup post shut slow probabl window 10 4 gb ram unlock laptop post startup take approxim 3 min slow laptop fine brows cannot take work heavi excel sheet cannot play game well web page take time download experi lag 30 second sound qualiti better compar laptop price overal fine product brows more\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
938     superb laptop win10 ms offic preload 8gb ram 256 gb ssd quick boot lag dropbox give 27gb space free one drive give 5 gb space one need extend warranti bought 1500 amazson option pendriv bought 64 gb store document etc bought exchang paid rs23236 rs4760 old soni viao plu sbi card discount realli happi purchas good screen batteri backup miss backlit keyboard rest great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
939     hp laptop 14 inch light weight genuin softwar perfect combin anybodi search decent laptopaft coupl day work foundpros1 window 10 msoffic 2019 genuine2 light weight quit handi carri everyday3 island key keyboard lot type daili core work smoothly4 alphabet engrav broader font size5 decent display webcam batteri life 34 hcons1 smokey gray colour lappi certainli hopeless think return ground jet black could excel option seem unavail moment amazon present configuration2 perform bit slower side consid configur though addit 4 gb ram boost howev seriou problem3 hardwar though light weight seem fragil low quality4 heavi gamersverdictcertainli valu money ive reduc two star design lappi hardwar otherwis perfect companion cost\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
942     taken laptop 3 month back quit horribl beginningth speed slow even need wait around 3040 sec open small size excel file even tri contact hp get much help screen share sessioni consult one friend help increas laptop speed actual remov unwantedunnecessari softwar pre instal like mcafe need alreadi built window defend unwant game softwar fragment order util space hole memoryit realli work abl use softwar need quick timey tri increas system perform hope help out\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
943     one best laptop price rang also confus relat ms offic trail version purchas laptop 2 day back conform ms offic 2019 student version life time freejust go this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
944     hate thing ad say microsoft offic free silli one month trial worth far better option avail pleas either provid lifetim mso els order return\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
945     softwar profession like product light weight faster boot time howev like camera qualiti poor 4 day boot start updat bio straight hp reason could understand time os window updat surpris claim featur like integr mobil instant basi happen even sever attempt surpris consid window commerci natur cun featur know reason sometim suddenli lose contact internet wifi featur use regular basi default one bought ms offic updat come load otherwis microsoft break comput load friend cd ti fast light jet black colour attract arriv one day good condit suppli bag free\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
946     prosreal nice laptopquit fast boot less 10 secondsscreen qualiti decentbatteri last 67 hour medium bright averag usagesound satisfactoryvalu moneyconscheap plastic bodi scare carri anywherein less 1 month print key fade poor qualiti printwebcam qualiti pathet like vga cameraadapt heavi almost weigh 70 weight laptop beat purpos portability\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
948     pro exchang got lappi i3 7th gen 256gb ssd 8gb ram origin win10 ms offic weight 14kg ₹24200 price consid worthi purchas look laptop also goodcon poor web cam screen qualiti good avg backlight keyboard speaker doesnt produc bass muchoveral look price hardwar spec happi photoshop video editor work fine good student offic go peopl switch asu x200ma hp 14qa per configur hp 14q realli fast boot 23sec\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
949     almost 4 hour use laptop trust love everi bit handi look cool sleek beauti light yet super fast batteri charg quick ton good thing 256gb ssd 8 gb ram main highlight thing could better screen 30000 big deal hd display still good enoughthumb thank hp thank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
951     bought laptop especi reason ms offic includ appar procedur activ ms offic call hp custom care take remot connect activ itit 2 week sinc laptop deliv made 10 call hp custom care 30 min durat still ms offic activ yetterr experi buy brand new laptop hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
952     thin light weight laptop quit good perform also good window 10 work smooth set automat easi display great price point quit accept overal good buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
953     price best ssd laptop one find buy laptop hdd naiv u get ton storag use extern drive screen also decent much better expect would prefer full hd display batteri life poor one game session drain batteri low laptop quit light comfort use camera poor say least\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
954     use sinc 1week work fine display good sound qualiti superb take second boot function quick smoothli ssd biggest plu point didnt find batteri life long last get charg soon met requir work entertain purpos overal go product price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
955     excel valu money super fast boot thank ssd i3 processor 8 gb ram 256 gb ssd win 10 os ms offic 2019 home student includ great deal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
956     unbeliev laptop price point match avail sleek light weight super fast point spend larg sum money brand far one best product price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
957     con day old laptop start show signatur slow processingit take time usual start shut pc also sometim slow respond feed inputdisplay qualiti bit worri display qualiti gentl press back display seen display merg color spot pressedpro batteri life quiet good upto 56 hour n fulli charg 15 hoursspeak qualiti goodlight weight n compact sizei rate 35 star base 2 day usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
958     build qualiti great super thin laptop got 1 day andprosssd m2 nvme pcie type8 gb ram ddr4core i3 7th gen 3mb cache3 cell batterysup thin bodi lightweightconsno fingerprint mandatori requir everyoneno type c port peopl use type c type c cabl commonlookwis simplerecommend\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
960     seethi laptop watch movi game etcyou use day day work work realli fast good special super fast window start shut down8 gb ram 256ssd stuffdo buy heavi usag keep simple\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
961     new model hp got deal great indian festiv 29990 issu warranti window 10 offic origin laptop boot 57sec due ssd featureif plan buy laptop delic purpos like offic work watch movi youtub listen music perfect choic dont go normal hdd laptop slower afterward mechan functionalityi modifi review 7 day usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
962     pleas dont buy model wast money bought much expect gone 2 thing good one light weight batteri life rest noth tell\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
963     well laptop quit good batteri life averag last 45 hour amazingli light laptop look premium process also good ideal casual use problem face web brows watch movi edit document etc overal good one cours valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
964     see lot posit neg review decid purchas one work fine batteri back good screen display good easi carri small size lightweight faster ssd overal satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
965     oper sysytem littl bit slow reboot tine take timebodi qualiti soft firm like dellon handl care batteri life good sound also goodbut price wise product ok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
966     good product slow ram cannot upgrad 4gb slot lot issu slow call hp technician take look it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
967     nice laptopal function avail like ms offic lifetim validitysound qualiti superb think hp prefer dell laptopsimpl 4 start performancehighli recommend home use normal routin work best laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
968     microsoft offic excelword powerpointi lifetim valid dont open offic first creat microsoft outlook id login otherwis u get trial versionscreen averagespe excel boot second light weight easi carri highlight\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
969     good product thin lightweight batteri backup good write review use product two weeks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
970     got awesom deal amazon great indian sale laptop compact awesom perform price point inclus ssd ad attract sinc boot time 10 secs\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
972     light weight travel friendli laptop process fast good memori space use profession work basic applic ms offic system also turn colleg friendli smooth keyboard video qualiti also seem good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
973     slow keep hang regular student work doesn’t involv huge applic hp servic bad though display onsit warranti insist run around servic center don’t recommend buy product all\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
974     laptop slow hang dont buy never use bad laptop ever life wish could return within time limit wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
975     realli want laptop fast enough run multipl program gamesthi product perfect me\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
977     excel entri level notebook ssd much faster sata build okay\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
979     pro light weight good batteri life 4gb ram 1tb hddcon processor speed slower expectedremark valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
980     system pretti slow take lot time bootthi basic usag laptop worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
981     receiv product mso activ hp also 3hr onlin session still thing product mention mso includ preinstal face lot issu servic team dell better service\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
983     light weight stylish good batteri life fast chargingonli issu littl bit slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
984     new hp laptop slow havent instal applic yet realli slow think gone back 20 year use less ram 4 gb ram use applic like word also work realli slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
985     8gb ram 256 ssd hd result laptop extrem fast light weight easi conveni frequent travel speaker good price rangevalu money 28k sbi card discount\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
988     look feel premium quit handi light weight screen fabul mous pad soft touch overal love machin opt offic hs 2019 1000 extra bought along laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
989     product realli good valu money reason pricehowev vendor didn’t deliv ms offic home edit licens key await vendor provid earliest\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
990     15 day receiv laptop start pleas help local repair said give back laptop amazon product igot defect refer photo start request replac laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
991     happi perform laptop lightweightgood speed worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
992     view angl worstopt nvme m2 ssd good perform likeoveral perform good better price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
993     charger oper system slow batteri backupnot satisfi servicevisit technician confirm returnw money back want return laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
994     price realli good real lightweight decent batteri screen good option option basic computingbrows needs\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
995     good laptop 8 gb ram 256 ssd make fast smoother hd display batteri backup upto 4 hr good student game 😁\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
997     good buy solv requirement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
998     good pieceram need enhanced\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
999     screen good laptop give 7 hr talk time becous light weight take everi where\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1000    wish much faster sinc kid work fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1001    purchas amazon promot biggest mistak laptop get stuck abl click type anyth amazon abl fix neither return product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1002    shorter batteri life cheap plastic build qualiti bloatwar downsid low price comfort weight upside\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1005    nice product excel perform would like hard drive partit two three drive instead singl drive\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1006    damag product deliv scratch one corner laptop laptop performancespe okay tool long time process satisfi laptop performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1007    perform good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1008    use laptop sinc last 3 day although look averag featur good seem littl slow howev valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1009    light compact pc take anywher offic colleg journey beginn want learn ms offic go this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1010    overal perform good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1011    recommend home user origin window offic 2019 student edition\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1012    thin light weight laptop good configur need use frequent travel worth money spent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1013    good daili use student professor basic use thin n light weight good batteri life thankyou amazon fast delivery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1014    great product laptop like price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1016    laptop batteri perform super\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1018    stylish sleek elegant\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1019    amazig laptop extrem quock boot plastic qualiti could better screen qualiti average\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1021    screen qualiti good hd dispali perform good light weight feel premium look recomend buy one \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1023    littl bit slow new laptop otherwis overal good product light easi carri along\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1024    dont go product worst ever screen worst mainly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1027    good buy offer per need good easi instal fast per requirement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1028    bought 28 k light weight nd good batteri life last atleast 4 5 hr depend usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1029    light weight good configur price rang good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1031    screen qualiti good weight light \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1032    screen qualiti could improved\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1034    good product meet expectations\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1035    laptop perfectli good sleek lightweight good batteri fast perfom origin window ms offic best 30k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1037    nice buy normal use case bought one free offic subscript well far im satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1039    product good condit month adapt working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1040    good laptop connect issu wifi\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1041    hp brand alway good quick delivery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1045    screen qualiti worstlaptop compact design much stylishwork good ssd help lot\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1047    happi specif accord requir simpli awesom machin super design\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1048    east west leptop best\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1049    excel screen light weight easi carry\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1050    good product low budget great perform batteri life 3 hrs\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1051    best offer amazon best screen qualiti batteri backup light weight\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1052    best price got 26490 discount sale\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1053    laptop slow boot also slow respond multipl app launched\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1054    hp alway make worth trust\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1055    nice product easi carri good batteri life worth price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1056    nice laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1058    excel performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1059    nice look laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1060    screen qualiti goodbatteri life satisfactory\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1061    go 30kbought 28kscreen qualiti could better\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1062    excel productbut memori 256 gbwhich 512 gb\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1063    great deal aspect amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1064    good laptopeasi uselight weight too\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1065    everyth fine except harddisk storage256gb ssd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1067    screen qualiti good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1068    product good howev invoic provid seller\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1071    like itfragil good fast product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1072    24 hr far good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1073    thank u hp amez perform like butter ♥️😍😍\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1074    overal good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1075    good laptop work well genuin window ms office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1077    product good normal home use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1078    need invoic product missingoveral great deal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1079    overal good perform worthi price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1080    excel product quick deliveri thank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1081    good design speed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1083    excel product per expectations\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1084    good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1086    great product student best budget laptop love it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1087    nice prodductvalu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1093    great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1100    design perform v good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1101    light good enough\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1106    good choicevalu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1110    like it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1111    good product budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1112    excel laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1114    good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1116    best budget laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1117    scree qualiti good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1120    accord hp laptop fall famili notebook dimens classifi notebook light weight dvd player non replac lion batteri good 23 ghz processor 4 gb ram work well window 10 home open close time normal hp updat driver comfort window updat work well box notebook power chord get includ warranti hp websitei load offic pro everyth look smooth display good angl sound ok good key board track pad worth buy price pay\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1121    good product receiv well seen descript sometim hang start hang chrome browser hang play game speed slow speed processor se 23 ghz dissapoint speed slow \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1122    product goodexcel laptop look wiseunhappi amazon facil deliveri servic one import got laptop per discript mention seller\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1124    good yar\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1125    good budget18720\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1127    good receiv cashback hdfc debit card cashback offer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1128    feel satisfi use laptopspe good bodi materi also solidrecommend purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1129    lapi good fulfil requir warranti card bro\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1131    time clock batteri work right boxterr support dont buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1132    good dont get warranti card\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1133    realli light weight notebook hpoveral perform good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1135    nice product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1137    excel laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1138    ms offic work slow brows speed good time hang googl chromememori run problem 😂\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1141    best product best price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1145    usabl compel although littl slow that replac laptop mechan hard drive ssd eras window instal linux mint 192 youll definit gonna see speed perform boost\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1148    good bought\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1149    nice performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1152    reciev faulti display keyboard impress brand new laptop screen unbeliev \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1153    bought laptop author hp product dealer 53k week ago laptop premium look blaze fast thank 256gb ssd backlight keyboard bought program watch movi stuff far complaint\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1155    frustrat product deliveri servic amazon hate hp amazon amazon deliv product week custom support guy didnt know anyth product dont know proper info product place amazon product deliveri time hectic prefer buy laptop protect data doesnt featur window home edit support bit locker even support devic encryptioncontact microsoft issu said contact hp hp custom care work even lpm 20 workingbatteri life 3 hourseventu laptop overheatingwindow home edit doesnt featur 😫poor product quality51k wast 😔amazon pleas pleas pleas pleas dont encourag wrong product fake sellersamazon consproduct deliveri timecustom supportdeliveri guy contact detail wrongproduct genuineservicehp consbatteri lifeov heatwindow os home editiondisk encryptionpoor qualiti product ☹️lpm 20\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1158    great product hp got 1k less price hp websit also got free laptop bag deliveri super quick blue dartlov laptop overal ssd make experi super smooth howev keyboard look cheap shoddi button chiclet keyboard clicki might announc display great far weekwil post complet review month far best nongam laptop research 55k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1160    bought 2 week back regular use great perform super fast speed smooth perform beauti slim light silver shade bright batteri life goodgot cheaper ₹ 44049 exchang old samsung laptop ₹ 5050 fast deal dealerthank amazon thank fast deal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1161    good onefast processor good screen start shut 20sec built good full version microsoft 2019had error msg intial mayb due installtn softwaretook time submit review doubli sure tht perform fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1162    brought 9919 good useprosveri light weightkeyboard goodscreen resolut goodssd fast especi boot shut downconsscreen turn angl less even 180 degreeperson view search full black laptop model model full black available\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1163    realli fast screen qualiti best good batteri life laptop actual educ busi purpos light gaming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1164    look laptop studi purpos good everi thing taken consider look realli ador 45 hr batteri life good sound qualiti get intel i5 processor window 10 home additionso far found everi thing well good yaa look game laptop wont prefer this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1165    honestli littl bit tension watch review product like keyboard mark mostli hope suffer samebut honestli situat receiv perfect one open packet product unfortun tore bill pleas care unbox packet yeah satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1166    distinguish product disgust servic amazonwithin 2 month got button impress screenreplac letter provid hp amazon peopl help issuedont buy costli product online\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1167    good product time delivery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1169    batteri life ideal 4 hour 6 hour base workloadfor game ok small graphic gamesscreen qualiti 5 star\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1170    perform good good laptop dont want game purposebut receiv screen keyboard mark replac it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1171    love moment shall write usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1172    good didnt face issu yet month batteri easili last 4 hrs\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1173    good qualiti laptop son mba use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1174    perman keypad impress screen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1175    good laptop provid descent batteri back ssd hdd increas speed light weight laptop screen resolut also good see hd screeni overal satisfi product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1177    good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1178    alway want buy laptop thank amazon best price super cool laptop deliv time good product thank again\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1180    good buy spec great light carri around\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1181    good laptop programing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1182     speed good cursor get stuck mani times\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1183    great laptop requisit featur light well\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1185    light weight fast attractive\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1186    good product use two month give review\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1187    far good portabl light fast \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1188    good offic use light weight recommend gaming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1189    nice productgood speed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1190    sleek light laptop good home use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1191    amaz buy amazingli quick deliveri thank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1192    excel product must buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1194    great product students\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1195    featur good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1196    batteri good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1197    review month usag bought laptop storeveri good developersthin lightnic keyboard backlightsharp crisp display ampl sound noisi dolbyno dvd drive 2 std usb 30 1 usb type c rj45 sd card reader 35mm jack lock port probabl offic purposeveri fast smooth lightn speed bootcom ms offic home student access word powerpoint excel onenotescreen tilt 120 degre 180 360i use monthmi usag mostli develop tool brows movi smoothli run ide dozen chrome tab local databas instanc give tri android studio previou i3 machin 4gb ram use struggl usag one seamlessli abl workregard window updat got coupl updat window driver updat hp updat instal perfectli issu updates\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1198    perfect lap give prefer specif ssd hdd ad adavantag model price rate valu money go check price ur near hp store sinc price amazon fluctuates\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1200    laptop good normal use game lover purchas graphic card ssd hdd combin boot time run speed brillianti also list laptop youtub channel tech waalaa pleas watch there\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1204    best laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1205    valu money total satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1207    amazingjust awesomehappi buyer batteri good laptop excellentgo it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1209    1from begin comput kept reboot cursor got stuckfirst everi 5min everi one minut frequent see logo hp screen would flicker comput start reboot immediatelyth cycl would go coupl time window say window properli instal option given advanc troubleshoot shut comput came window installedbut day1 say window properli instal reboot screen flickering2 specif buy said ms offic instal open check find subscript 30days3 graphic poor suppos full hd computer4 lost trust electron product bought amazon option return exchang give free troubleshoot serviceeven though bought extend warranti dont time wait call servic everi days\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1210    hp 15q 0026tu excel budget laptop good qualiti perform batteri lifebatteri avg 5 6hoursound qualiti good qualiti 70 belowperform goodboot time 1 minut lessbuild qualiti betterconsno ms offic origin version trail version 30 days\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1211    lap seem sooper smooth initi setup doesnt felt lag issu like peopl claim review much satisfi batteri life that 4 give 4 star bt overal best one avail market price rang opt purchas one 10 day enquiri web search doesnt make disappoint thank amazon hp support found genuin lappi 😍review 2 month gave one star 5 star overal pefom awesom one problem creat new folder lag ore sec felt system slow kindli uninstal useless preinstal softwar especi mcafe antiviru instal avast free antiviru problem solv u sooper smooth lappi enjoy 😍🔥\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1213    like laptop ssdhdd option ram upgrad option upgrad 256 ssd 8 gb ram laptop 16 gb ram 256 gb ssd os 1 tb storag laptop work flawlessli awesom purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1214    look nofril laptop one look ok work like charm good keypad overal tick box compar laptop twice price obvious disappoint wagonr look work like one expect work look like honda citi anyth higher period\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1215    good pack amazon neat safe immedi receiv thought refurbish use month feel good product batteri sound qualiti satisfactory\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1217    best laptop budget rang good batteri back light weight use photoshop imag readi premier without lag bought 8gb varient help boost perform use lenovo g560 model 8gb ram weigh conclus go laptop budget within 35k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1218    well farfast boot upawesom hd displaysmooth great performancenic keyboardgood qualiti soundcons1 touchpad disabl button even driver manag disabl option present2 one partit window installed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1219    dont know blame hp guy deliveri retail amazon peopl product deliv believ refurbish one new product laptop start give issu month servic seem batteri issu even get charg whole day last hourpleas dont buy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1221    good laptop reason price laptop perform slow use preinstal trial version mcafe uninstal mcafe instal anoth antiviru name comodo start work fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1222    purchas leptop 34k freedom sale contain 256gb ssd 8gb ram intel hd 620 graphic make laptop l awesom one problem dont know partit c drive without formatting\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1223    use laptop 7 dayspackag deliverypretti ordinari packag manual laptoppros1build qualiti good look premium2easi carri light weight3audio sound qualiti good audibl empti room easily48 gb ram version take pretti much less time start load fastcons1display qualiti pretti averagecolor clear2 ms offic window 10we need enter product key day bad given ms office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1224    receiv laptop today ill updat issu far amaz sound qualiti pretti good display feel like couldv better keyboard backlit wasnt prioriti overal well function laptop your heavi gamer dont need laptop seriou code great everyday use though doesnt offic that drawback keyboard qualiti mous smooth couldv better theyr bad pretti good need budget laptop everyday use definit go this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1225    batteri life good good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1226    home use privat use perfect special offer best price town work like bomb good far\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1227    nice laptop i3 processor laptop 8gb ram handl daytoday task perfectli game bad instal app os slow normal use great laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1228    let start display display qualiti good batteri life give 3 hour speed prosser good overal laptop good student offic work also\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1230    good process speed document load faster laptop boot within 8 second shut within 35 second one star less averag look\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1231    good laptop though bit larg carryth topmost key keyboard small given fact keyboard lot space could easili put larger size keysth cover laptop tend show fingerprint mark smudgesm offic student version doesnt featuresexcept neg found laptop fairli good routin work purpose\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1232    useless buy amazon valu money tri get product activ key hp support\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1233     im give review use one weekbatteri life good almost 5 6 hour your make project watch moviessound qualiti goodi suggest dont use vlc watch videos\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1235    excel batteri backup\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1237    give review 20 day use perform well take 2to3 second start applic run smoothli without hang batteri life six hoursbut one drawback ms offic 5 day trial version overal well price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1238    slow win 10\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1239    would like know activ window offic get activ ask buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1240    good perform far use softwar develop order august 2019recommend softwar engin 8gb 256gb ssd must eas development\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1243    good laptop creat one drive 1 gbwindow product key share mehow reinstal os corrupt\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1244    good product reason price expected\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1245    best one littl heavi weight sometim get slow thing issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1246    smooth thought 7th gen 8gb ram function like old 4gb ram quadcor downgrad sound plu point guess upgrad cost less batteri life also upto mark\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1247    good qualiti laptop thing miss microsoft office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1249    good look metal bodi coat littl bit slow system datebatteri okay also littl bit heavieroveral good normal stuff entertainment\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1250    wish proper laptop good sound effect go blindly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1251    good qualiti product excel batteri life\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1254    ship box good condit insid laptop safe pack insid one laptop charger foundso far perform good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1255    laptop good littl bit slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1256    premium product valu money howev need updat softwar hp excel servic amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1260    good oper sleek design must buybut speed expect display also much expect overal 35 stars\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1261    best student hang problem\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1262    fast good batteri life good speaker that need one go 8gb ram version save lot hassel extra cost worth feel\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1266    product good ms offic regist \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1267     the batteri life pretti good watch upto 2 movi continu 6hr straight 3hr each\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1268    highli recommend moder use amaz batteri life full hd screen awesom sound heavi game still 8gb ram run everyth smooth\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1269    budget laptophp best othergood pictur qualitybett perform laptop function reliability\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1270    perfect laptop 100 genuin product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1271    pl dont buy emi show cost emi actual charg 14 interest n cost higher actual cost\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1276    work fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1277    gud product price want start side number key press num lock key\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1278    good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1279    batteri life good nd properli workbt microsoft store properli work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1280    nice look\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1281    nice fast laptop ms offic workingplz help\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1283    good lappi worth it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1284    product good process speed slow delhiveri courier servic also good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1285    nice brand hp product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1286    good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1287    product good sinc hdd bit slow even ram 8gb disabl okay\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1289    everi thing good per expect ☺all nice laptopwith good quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1290    good normal usekeyboard wide use type slow due windows\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1291    super\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1292    nice good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1294    best laptop student batteri backup good gameplay also good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1295    love hp laptop servic good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1298    good laptop better back expectation\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1299    best price rang 3040k overal good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1300    nice was\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1302    good laptop good configur low price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1304    overal product good price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1305    thank amazon superb qualiti product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1306    good os lagging\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1308    good packag nice buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1311    overal good product valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1312    56 hour batteri backup perfect me\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1313    total good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1314    best product price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1315    nice excel product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1317    except batteri remov problem otherwis superb\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1318    good batteri life problem\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1319    ok good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1320    ssd hard disk best\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1322    good product valu worth\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1323    good producti satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1324    good look product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1325    okay\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1326    good use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1328    good product maza aa gaya\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1329    good purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1330    good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1332    like product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1333    product good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1334    good multitasking\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1336    superb\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1338    worst product hp warranti period 1 year one year 3 time give custom careworst custom care servic never respond though tweet also samecustom servic execut suggest keep updat speed system slow furthermi past experi lenevo acer good regret tri hp laptop wont buy hp product futur sure\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1341    nice use laptop use sinc last 2 month work file till time sound qualiti good display also good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1343    purchas 6 month ago would sure recommend dell instead hpi softwar dev profess laptop irrit slow speed nd buy anoth one due slow performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1344    good good laptop student practic purpos suggest purchas amzon get less rate\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1345    like product much game screen also nice easi charg best product 👌\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1347    purchas hp laptop amazonit worth buy n product excel conditionam satisfiedthank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1348    worth penny\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1351    best choice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1352    love it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1353    kindli arrang technician laptop workingtri call hp toll free unabl connect them\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1355    good product less wait fast\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1356    good work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1357    satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1359    note avail onlin store well check purchas model dont touchscreen note thatfor use devic coupl week follow observ normal user point viewfirst mention spec explain user experiencefollow specif intel® core™ i37020u processor 1 tb storag 4gb ddr4 ram integr intel 620 graphic 14 inch hd display resolut 1366768 3cell 41whr batteri window 10 osfollow user experi buildqual good build qualiti compar price top surfac matt finish good grip speaker good output weigh around 15 kg moder weight consid size final look gooddisplay hd led screen resolut 1366768 perform great colour punchi contrast well averag display perform well upto expectationskeyboard speaker keyboard doesnt backlit feedback keyboard good doesnt numpad placement pf speaker good enough sound output perform averagebatteri perform averag perform batteri full charg use clock 3 hour batteri backup charg 3 hour even medium bright heavi multitask use get 2 hour backup overal batteri backup averagesystem perform problem use laptop surf brows internet small medium game also run smoothli doesnt fingerprint scanner 1x usb 2 2x usb 3 port handi combin conclud averag laptopverdict good devic price would around 25k up devic 7th gen processor decent storag hp brand reliabl apart there hardli anyth attract lack fingerprint sensor backlit keyboard decent batteri backup better graphic better display resolut there deal avail around 25k go els invest thousand go better devic 30k worth buying\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1360    honest review use 3 monthsi digit market profess need machin easili handl heavi excel file data work found laptop good still level access file mail ppt etc concern best laptop price rangei also issu mous pad mous come model basic touchpad multi touch padrest everyth goodthank read hope helpsalso get 10 cashback order vqr in13\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1361    best look slim light weight display awesomeperform per specif goodit beautybought much researchconfus lenovo 330 dell latitud 14 inch seriesit much better thatwould recommend this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1362    overal pretti good packageproslight weightdec batteri backupgood look smoke grey colourgood build qualityconsinbuilt batteri non removableglossi display mat display good glossi reflect theredisplay qualiti uptomarksound qualiti averagesystem littl laggi much\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1363    nice product rangethi lappi realli awesom u buy around 26k bought 22990₹actual price 25990₹instant discount appli sbi card 2000₹receiv 1000₹ amazon pay balanc 1000₹now final price 22990₹ great deal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1364    bought laptop month back amazon great indian festiv use sinc thenth product light weight sound good batteri backup good import perform horribl exchang 5 year old hp laptop 3rd gen i5 processor 7th gen i3 processor still even half good old oneth system lag alwaystak lot time process operationsi made fresh instal window 10 creat recoveri media bit better use bei realiz faulti product late time last date return alreadi complet 2 day im stuck super slow laptop goand worst thing ram 1 slot 4gb cant upgrade\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1365    pleas buy product stuck wast around 30ksystem hang everi second support\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1366    purchas lappi wife amazon sale 23k appli discount would say pretti good price look sleek slim light carri around screen display sound also good batteri life pretti good around 6 hr fast charg though state other perform slight issu fast snappi take second launch app get around ad 4 gb crucial 2400 ram dual channel increas 8 gb though challeng remov back cover insert ram hp made end user friendli respond better pleas consid upgrad ram get around slow issu overal good laptop basic task light offic work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1367    overal nice packag provid get 28k 29ksound qualiti awesom win10 os 4gb ram lag sometim manag look good batteri life accept complet valu money buy given rang competit fierc rang choos accord requir mine portabl area ace given dynam thank u hp amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1368    laptop 7th gener i3 processor 4gb ram 1tb hdd still first usag found laptop 20 time slower 5 year old pentium lenovo laptoponc make payment payment also get struck amazon also polici custom friendli initi refund buy new differ model u want settl model get model today hope 31000 buck go drain amazon confirm 2nd product model work great said ensur hope dont go pain agoni again\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1369    bought brand new laptopn came lock user found laptop use someon amazon technician also visit approv noth happen well now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1370    pathet expect onlin trustworthy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1371    bought laptop 2 week back use twice yet speed pathet sure origin hp product unfortun last date return yesterday even abl return now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1372    laptop good offic work recommend perform heavi work like play game video edit work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1373    beauti design lightweight come core i3 good basic usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1374    combin work 4gb ram pretti slow increas ram 8 gb bit fine place laptop decal sticker coz look dull well happi purchas depend requir increas ram max 25003000 servic charg colleg offic stuff smart wise \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1375    product one worst function laptop product hang i3 processor perform pathet cant run basic function clearli specif creat hp sold thru amazon buyer stuck maze amazon support question answer sit 2 laptop nonfunct month tri return polici told cannot happen amazon product clearli con job amazon hp joint party\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1376    laptop look compact impressivebuild qualiti perform averag can’t complain ram 4gb default color display look wash dull howev make vibrant increas satur level 30 intel hd graphic set display look amaz vividal great buy given price point got 27500\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1378    fast deliveri item superb genuine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1379    budget laptop absolut bare minimumproslight enough carri arounddec batteri life 34 hr normal usage1tb hdd allow lot storageconsveri slow boot 3 min welcom screen spite win 10veri slow run app offic applic take almost 20 sec initi fullyreflect screen hard see light sourc behind get dirti easilybelow averag sound qualityoverpr belong 20k range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1382    everyth good laptop one slow although u fix uninstal softwar start also purchas amazon great price 15500 includ exchang cashback great indian festiv also gotta great batteri life last 7 hour easilyalso fast charger 90 percent 15 hours\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1384    sleek slim light weight laptop great dealif look laptop carri around eas howev perform abysm get rid problem upgrad ram atleast 8 gb expand upto 16gb per spec furthermor could add ssd improv boot speed purchas machin run matlab struggl default 4 gb ram ad anoth 4gb crucial work fine next plan add ssd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1386    laptop display corrupt within 2 day usag appar one rubber corner miss right time deliv hp engin note inspect despit best effort convinc laptop display wasnt fault hp squar put blame upon sick bad experi deal hp local servic partner tv electron gurgaon folk never answer call close case without give ear custom say dealt dell servic laptop purchas amazon servic far far better professional\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1387    laptop take 2 minut boot want run program like chrome even open folder laptop take age execut command softwar issu ask amazon help technician come take look laptop 5 minut say softwar issu cant help approach hp custom care said ram need upgrad would need upgrad ram new laptop without program instal laptop lie like sinc past 67 month nobodi use risk go depression\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1388    suggest spend fund buy laptop better processor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1391    laptop quit slow howev quit light easili carri feel earlier 8 year old laptop better builtmi review 5 monthsuseless laptop freez frequent slow pleas dear amazonian dont buy use old laptop sad money drainlong term reviewi give tip speed updis window automat updat instal anti viru laptop work fine now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1394    bought last week work work word document brows even laptop sluggish best window 10 support mere 4 gb ram unless option enhanc ram laptop worth say hindi kaam chalau would rather spend thound extra buy better versionoth featur like batteri screen qualiti good track pad pretti tardi unwork perhaps\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1395    product came good condit time gift father laptop lightweight portabl screen size perfet dad batteri life decent perform task brows run applic simultan quit decent perfect dad usag power user might want see somewher els window 10 experi good dad happi happy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1396    best laptop light usagestud recommend heavi game photoshopsfirstli got faulti laptop fan workingexchng got new oneprocessor goodspe great work better window 8 feel quit lag w10ventil fan vent provid laptop badpric point good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1398    light weight laptop come window 10 home os 1tb hdd decent storag 4gb ddr 4 memori give smooth oper longer batteri life claim 7 hour last 5 hour batteri seem built dont know get replac expir need take servic center cannot chang drawback overal satisfi laptop recommended\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1400    overal would say great deal price pointi bought 25990 great india festiv salethi awesom good offic worksit justifi needsi game freak bought itit carer offic educ relat work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1404    sir mamthi kind inform necessari action laptop still function properli day back peopl made second id mine still problemthen call back mani time call centr nobodi pick call wentto servic station ahmedabad guid need call custom care ask pendriveand take data pendriv reinstal data still problemnow unabl understand replac laptop job work halt loos 5000r per daydu laptop ineffici pl suggest bear lossalso don’t want laptop pl take back need purchas laptop dont amount purchas laptop againkindli expedit els go court solut life disturb due nonsens product regardsmanish sharma\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1405    good budget laptop day day job light handi carri boot fast batteri life also good quick charg optic drive gener requir days\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1406    well built fast durabl laptop got 23k regret best laptop categori light weight thank seller amazon deal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1407    dont buy seem hardwar compat softwaretak almost 15 abl abl start workbas excel powerpoint keep hangingfreezewish could return thisdont wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1408    problem operatingsystem slow day one hp custom care also unabl repair itsystem use issu resolved\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1409    meet expect still 5year old lenovo perform better one keep get frozen everyth major issu especi brand new laptop brand like hp havent even instal anyth big major slow soo much month old im search warranti inform return get replac im regret choos lenovo bcuz get good deal thought\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1410    one best deal made purchas laptop 24000 got 1000 cashback diwali sale 2018 amaz also lightweight initi afraid whether origin one duplict one use 3 month face problem price i37th generation\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1411    paid decent amount money laptopit compact lightonli concern ram manag feel like 4gb enough smooth performanceon offlin mode ok 4gb ram howev expand 8gb ram pretti much smoothpleas wont recommend gammers\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1413    amazon sold pathet product think refurbish product lot hardwar issu bought husband birthday gift march start use sinc last 2 month key board give problem connector screen keyboard make nois lock keep open pleas dont buy electron amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1414    laptop bogu dont fool low price load window laptop though lightweight highli bloat pre built softwar moment switch see disk space 100 consum 80memori consum bought laptop one week instal bi tool boy super disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1415    laptop lag lotyou feel better remov pre instal app includ antivirusotherwis gonna wall monday morn p\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1417    bought wife replac 9 year old dell mac user use window work build qualiti good got 27k price hp light weight laptop steal though miss back lit like mac except product good write anoth long term review later\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1419    bought twenti six thousand got two thousand rupe back amazon pay happi enough get dirt cheap happi doesnt last much time laptop realli test patienc use multi function rest good use chrome use chrome noth else\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1420    home requir fit bill batteri life good laptop lightweight screen reason ok i’m game therefor cannot comment process speedoveral good valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1422    bad producat sale onlin becou micro soft excel laptop one soft wear updat suggest parch laptop onlin total disopoit product last 3 m9nth use work time 8 hour updat 5 hous work promis dont parch electron product onlin becosu benefit reciv there\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1423    slow dont know whether deliv faulti product take sometim minut open folder applic clean temp file stuff still help look weight okay cant serv actual purpos use go take servic center get check anyway\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1424    super slow laptop look beauti handybut one need speedi suggest never never buy producti use read pdf watch movi brows even perform small work perfectlyit take lot time open browser510 minut hang lotyou buy believ regretrest wish\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1426    use last 10 month though screen batteri weight ok one star given softwar issu ver slowand alway hang alreadi check hp servic centr improv better buy asu products\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1427    good price boot time muchnot gamer heavi user watch movi tube songsstil take time load page perform average\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1428    time deliveri devic complet fit descript easi use lightweight good builtin graphic speed also nice i3 processor batteri life excel better given descript love it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1429    best laptop offic home use light weight small size laptop help carri anywher sound qualiti batteri life better बिनधास्त purchas करो। best product thank amazon hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1430    worst laptop ever seen simpl offic work save document file can’t even play game without hang don’t get fool see price spec hp degrad brand valu kind lappys\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1432    product receiv slow although decent built light weight good batteri life good look origin window slow that deal breaker sold laptop 4 month use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1433    budget laptop averag build qualiti 4gb insuffici win10 upgrad 8gb work smooth light weightgood brows document etc medium heavi usag better invest anoth 10k go i5 8gb configur minimum\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1434    bought offic use realli great product good sound great batteri life got great price cashback thank amazon quick delivery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1437    good product purchas product 24000 good use offic work realli good work sound ok batteri life also ok think good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1438    excel sound equal surround sound etc make even better batteri also good weight 159kg godd 14 laptop shift one handkudos\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1439    speaker place top sound qualiti simpli awesomematt finish make laptop look first classno lag heat problembatteri stand upto 45 hrshandi 14 inch screen look compactth best lap market 25k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1440    best laptop price got one wife happi bought anoth one though price chang nowm still happi deal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1441    look good light weight also good gener offic work suggest run multimedia applic becom low\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1442    screen size slight small perform wise worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1444    sound qualiti standard batteri life good minimum full charg light waight easi use issu slow processor start window time much \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1445    good product nice handl low weight graphic qualiti goodo updat good overal perform excellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1447    laptop slow sinc receiv laptop feel like pentium version even open folder take age start hang lot tri everi possibl way solv hp assist still quit slow could return trust would obliged\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1448    slowest slow tortois take 3 second go one tab tab googl chrome uninstal unnecessari app still ad kind creak nois laptop use \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1449    deliveri time effectivelight weight speed good think14 inch screen enough show better look\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1450    valu money comfortable\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1452    thing light weight laptop overal plasticki build need extra care monitor hingesth ugli overs charger make entir packag heavy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1453    it’ ideal laptop look type use batteri life excel screen qualiti also good smooth keyboard preinstal window charg take littl time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1456    realli good laptop 29k use lenovo laptop rough tough usabl let see hp works\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1459    light weight expect dimens performancea good student move presentations\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1460    key board work properli laptop slow oper even though i3 processor 7th gener spend rs3000 extra buy intern solid state drive increas speed laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1462    use four month light weight process speed good display fantast absolut would feel 14 inch laptop go without doubt\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1463    worth budget 3538k go laptop like lenovo would provid featur higher configurations\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1464    wonder product realli good cheap brother give mark\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1466    nice light weight laptop design basic usag ment heavi task multitask design lookwis good use bit lag slow processingoveral nice slow process laptop basic use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1469    baddisplay workingi gave laptop trivadrum hp care center servic 21092019 still gettoday 1 month over\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1472    window 10 slow take abnorm start time offic built accept microsoft origin pleas help\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1474    got best deal fantast machin light user origin window light weight bit slow ok compar pricing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1476    good product slow good normal use much load 4gb ram need better processor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1477    nice purchas nomin pricevalu money home amd offici useappropri batteri life easi carri weight laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1478    overal laptop good except speed oper perform hang mani time even one applic open mani time wait minut laptop react\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1479    bought octob 10 2018 stop work within yeari dont know solv problem warranti statu still activ 5day pleas help someone\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1480    great product wonder price get see light weight indeed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1483    nice light laptop build could robust though overal excel machin light usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1486    valu money best thing light weight yet comfort screen size\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1487    ok good price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1488    laptop good use fast take time boot got hang time even upload heavi softwar till nowbatteri life good fast \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1489    comput good hang sometim speed slow \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1493    good laptop hp price rang got 24kbut feel materi qualiti could littl improv shoot pricesbut overal good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1494    good perform light weight compact batteri backup almost 4 hour sound qualiti adequ good choic day today activ drawback sometim lag reason otherwis awesome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1496    laptop came window 10 preinstal sure problem processor ram laptop run slow take min open blank excel file\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1500    good laptop hp use sinc 3 month problem easi use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1507    good product far\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1509    face hang problem need improve\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1510    nice product heavi program video movi program lightweight editor work well\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1511    laptop slow cant multi task thing laptop basic use like watch movi stuff cant instal mani program slow down\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1513    issu window first week reinstal run fine now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1517    stylish look wise sound good processor fast work awesome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1519    item total pathet yesterday collect product per expect qualiti good want return product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1523    laptop tend hang lot dont know i3 unabl handl win 10they give win7 much smoother\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1525    slow hang total disappoint return possibl replac care purchas one\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1527    excel product valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1528    hi laptop design sound good light weight perform slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1533    best qualiti rang light increas ram speed thisss\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1534    good build qualiti ok process speed slowwith price rang big compromise\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1537    23k good laptop bought big billion day offer oct 18 work fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1538    except batteri system okay\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1539    satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1540    worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1543    light weight good look origin window 10 laptop run littl slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1545    laptop quit slow …doesnt look like i3 7th gen processor …how solv problm\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1546    laptop fine microsoft offic could given along packag addit amount\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1549    overal 15 rate work amazon return pc easi returnpathet processthey send some1 check speak truth fals wifi adapt realtek rtl 8723de80211 bgn pcie adapt doesnt work 5ghz airtel relianc wifi internet goe obvious go happen faster laptop go work unfortun inform hidden mention anywher technic spec pleas dont buy laptop con big heavi touch screen ssd normal hdd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1550    decent laptop wireless adaptor support bgn band connect 24ghz signal get max 40mbp speed even high speed 100 mbp connect abl connect\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1551    feel worth buy nice hp laptop budgeteveryth work finesound qualiti good batteri charg 99 last 6hrsi feel made good decis spend money good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1555    batteri drain quickli even hybern mode process slowcannot run even 2 applic togeth smoothli look like old laptop bought new bodi pathet experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1556    hopeless servic amazon deliv laptop today load abl start immedi follow voic command reach stage ask phone connect laptop even put info abl move ahead complet disappoint custom servic tech support team amazon ask contact hp support team get help pathet servic support\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1558    u want laptop within 45000 best one work smoothli support 2160p awsmyou get 30 day free mcafe trial batteri life excel front face cam good get offic 2016 instal must buy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1560    purchas product win10 ms offic ask key provid product gave multipl call hp call center solut receiv need assist instal ms offic thank onlin support provid instal officeglad know onlin support avail 24×7\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1562    bought laptop 29th sep 2019 frm amazoningot deliv 1st oct 2019when start use laptop check laptop warranti statu show warranti expir 15th dec 2019 devic activ 16th dec 2018pleas help warranti issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1563    bought laptop wife great fan hp last hp laptop last almost 8 year perfect day day busi need happi one valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1564    product good want go lower configur come around 33k base past experi window 10 need better configur like i5 gen7 n beyond high perform processor everyth defin like performac performa lags\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1565    read review plan buy laptoppro ship window ms offic batteri life around 34 hour think ok keyboard responsivecon led light laptop eg charg light laptop heavi accept bought 15 laptop core i5 8 gb ram feel perform slow screen color accuraci fade sound qualiti averag mous key hard pressi weird issu tri get hp support sinc last 2 day abl get touch themif look laptop rang 4045k look anoth brand laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1566    els amaz price mani optimis done especi vent region display keypad noncontact surfac light weight board speaker realli good work previou model con thing felt varieti colour model overal amazing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1567    best inclass perform featur valu money batteri life upto mark displayaudio qualiti great cream cake microsoft window 10 lifetim valid microsoft offic 16 lifetim validity\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1569    review 6 monthsstrongli recommend guy wast moneyveri cheap build qualitymi display got damag reason hp custom support take long respond even physic check upno c type usb non remov batterya got intel i5 processor satisfactori performancei wish could give zero star hp servic disappointing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1570    pleas guy dont buy laptop purchas laptop 15month face batteri problem support also idea problem batteri face issu like charg batteri long timeac adapt link notebook still show plug charg also contact hp support centrethey told like updat bio updat thing servic centr told batteri work properlyit show plug charging\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1571    best product price got 37117\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1572    poor batteri life performanceth batteri drain fast 1 everi minuteeven i5 processor 8gb ram laptop slow tortoiseit feel like amazon sold 2nd hand productim regret decisiondidnt expect kind servic wellreput compani like amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1573    got time pack well switch complet small setup anyon basic pc knowledg activ offic packag onlin chang antiviru norton ive use yearsoveral recommend moder user\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1574    product nice light weight nice batteri life doesnt usb 20 30 port say descript also doesnt backlit keyboard problemoth work amazingli attract specs\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1576    good perform batteri life 4 hour work lightweight easi move definit valu money window 10 offic student version also free product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1577    overal nice laptop good batteri backup sleek compact perform wise good happi purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1578    buy m2 ssd 240 gb worth buy make laptop super fast startup shutdown also make applic start real fastgood valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1580    need review hp product know great qualiti laptop except want mention one thing laptop support 24ghz band wifi peopl would get affect ye laptop support 5ghz band everyth els perfectli fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1581    good product hang lot within 15 day sound gone\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1582    initi batteri drink quickli call servic engin offer chang batteri window updat batteri backup awesom final happi purchas perform nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1584    problem report immedi receiv system 191019 technic inspect done 22nd recommend replac amazon contact 241019 promis replac today 291019 noth happen far system lie idl 191019\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1585    overal valu money price rangebuilt qualiti also goodinclud window 10 ms offic student version lifetimesystem speed good heat issu game asphalt 9\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1586    good configur preload window 10 ms offic sure valid ms offic ie lifetim one year only\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1587    good purchas speedi deliveri good codition\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1588    experienc poor servic amazon date purchas updat date manufactur hp system affect durat warranti got 10 month less waranti expect one contact support either end ie hp well amazon updat record even provid necessari documentsevidence\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1589    good laptop amaz featur price rang rather slow start make start good batteri life hp support usb jack cumbersom one rather slow sound qualiti good overal nice product range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1591    system fast batteri life increas otherwis thing perfect ❤️❤️love laptop cheak thing fine laptop side well satisfi product 😊😊\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1592    screen line want return get replacement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1593    laptop good good perform batteri life neg side weight size laptop didnt realis size laptop big weight heavi make heavi carri mous pad laptop user friendli would give 35 star rating\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1594    almost month like sleek design charg fast batteri backup good bit slow sometim rare case even use small softwar boot speed quick almost within 10sec overal like laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1597    nice product hp good package\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1598    brought someon els satisfied\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1599    laptop speed slow compar describ product detailsit integr graphic give backup 13 hr mention descript take much time boot want return get money backit amazon fulfilled\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1600    valu money good qualiti sleek\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1601    thank give wonder gift amozon team great workonc thanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1604    batteri life good charg drain fast hang mani time got 28700 exchang speaker also good valu money \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1605    cons1 slow processing2 batteri life averag good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1606    good time delivery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1607    product good qualitybatteri life better good look window work good work slow mostli time updat ms offic tool without updat work excel etcupd compulsori fast regular good working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1608    nice product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1609    fast good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1610    could batteri life better deal exchang brand laptops\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1611    laptop good look vise perform vise slow even i5 processor 8 gb ram speed good perform good think lenovo better hp price rang \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1613    realli cool product good batteri life light weight good valu money overjoy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1614    got replac order work fine process good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1615    overal laptop good littl bit slow either suggest peopl buy this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1616    good product vfm deliveri amazon good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1617    budget laptop qualiti product good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1618    dont buy laptop give ms offic pre instal activ one week ask activ charg total fruad product use less custom care services\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1619    15 inchesit wasnt 156 inch expect size featur alright\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1620    got win 10 ms offic didnt get softwar come preinstal format unabl get tri contact hp proper feedback\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1621    batteri life averag weight averag best product valu money run game smoothli less best\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1624    hp 15qds0029tu laptop 7th gener intel core i5 7200u processor 25 ghz 8gb ddr4 ram 1tb hard drive perfect normal usei love laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1630    seem like bit slow non respons keypad hard press better visit near showroom compar model buy recommend go ssd version\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1634    sound qualiti pictur qualiti good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1638    overal good laptop 3 month complaints\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1639    overal perform slow batteri life good valu money worthi compar laptop avail keyboard light available\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1641    simpli excellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1643    work ms offic properlyno support technic team hpno solut amazon teamnot purchas onlineofflin good support\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1649    worth money found defect well\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1650    nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1652    nice one good packag delivery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1656    laptop work well far happi customer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1658    good now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1663    product good 1st day keyboard working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1664    good product prize range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1665    littl bit slow otherwis ok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1666    laptop slim good face problem chrome googl websites\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1668    good product exept heavi weight obvious mani featur great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1669    product good warranti four month instead one year want extend warranty\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1673    good issu happy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1675    laptop good use almost whole day good performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1678    love laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1681    worthy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1682    worth value\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1683    sleek good looking\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1685    light weight fiber bodi good need improv metalic\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1687    worth it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1688    nice product low price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1689    best product price rang thank amazon discount\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1690    good far it’ work fine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1691    good product qualiti button r come laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1692    one best product hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1696    touchpad work performamc good expected\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1697    laptop speed upto mark otherwis good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1700    batteri life goodlight weight good traveling\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1704    good product thank amazon andim fell good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1709    okey good qualiti better material\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1710    good product realli worth money stylish design\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1711    good product best price tag batteri auwsm\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1712    heavi user find product nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1713    veey good prod hp alway deliv \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1714    good laptop qualiti valu money product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1715    good sound quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1716    good batteri life light weight valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1718    everi thing good except cemera\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1719    good qualiti range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1721    superb laptop love costly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1722    nice productworth buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1723    hp never disappoints\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1724    good performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1725    good student daili usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1732    good laptop 22k right enough colleg student decent perform littl slow 4gb memori pre instal window 10 home ms offic offic need bought separ use ms account instal need use offic product nice screen nice look laptop go issues\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1733    plz dont buy di laptop worth 22k good use show good product sell amazon disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1736    hp 15 db0209au 156inch laptop a491254gb1tbwindow 10integr graphic jet black good basic moder useth descript say come antiglar screen actual doesnt antiglar screenit slow take long time open simpl thing like file explor ms word etc preinstal window 10 extrem slownot good heavi game one play light weight gamesmicrosoft applic like word etc ask product key activ provid one might reinstal microsoft officerest laptop light weight quit sturdi n good look good keypad panel touch padbut u get price bought rs20000p one may tri reinstal windows10 version make system run smoothly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1738    window slow product badand two member replac amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1739    hang window 10 day 1if u want chang window driver avail websiteit becom dubba without driver usb lan wifi others\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1742    noth like product take 20 min start total wast money dont buy sellerdidnt get qualiti product1st receiv use productthan exchang still worth lessi want give 0 star rate product butwithout rate review possibl upload revuew\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1744    everyth goodexcept support softwar ms offic work perfectli mention discrimin requir support start ms offic reinstal own\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1745    describ initi took littl time requir function well enough work laptop meant game afford best range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1749    processor bit slow begin instal window 10 could better use window 7 overal sound graphic good valu money product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1753    good choiceveri handyramakrishnan\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1754    like product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1756    good colleg students\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1757    comput slow boot buffer time highnot recommend purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1758    worth money look like govern laptop tamil nadu\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1762    initi problem help line center solut done good better\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1764    cant get warranti detail pleas ensur warranti detail thanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1766    worth money chang window 7 window 10 work slowly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1768    valu money realli nice product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1769    home edit good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1770    nice product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1773    good laptop game stop between\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1774    r ok batteri work properly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1776    basic nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1777    hang maximum number and\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1779    like prescrib advertisement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1780    laptop best slow working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1781    display dim otherwis superb\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1783    excel product price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1784    cool\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1785    nice product valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1790    best leptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1796    good laptop smother oper screen batteri backup good surfinghp laptop price origin window ten wow happi get this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1797    pathet product didnt start first hang want return product get money back\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1798    nice laptop budget explor fun watch video play game also good batteri life big screen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1799    super laptop nice super amazon thanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1803    friend dont buy laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1805    good expecting\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1806    nice game heavili gamer run smoothli good screen resolut best class\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1809    better\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1810    great experi chromebook faster mac window comput easi use boot quit fast good peopl gener use seem well balanc chromebook good price someon want better qualiti screen go higher end chromebook daili driver becom first go machin good see final hp bring chromebook india reason price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1812    overal good experi first chromebook\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1813    ive use chromebook sinc launch complet invest googl ecologyth batteri life great screen averag price point quibbl inabl hing enabl use tablet sound speaker terribl keyboard touch screen quit respons great road warrior cheap easi lug around last 2 year that great\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1814    everyday purpos brows shop social media chromebook perfect never need window read chromebook hope neededand im happi screendisplay soundeveryth fast dont need extra bell whistl come window love simplic chromebook\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1816    awesome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1817    decent chromebook hp white color look awesom first chromebook love faster secur window good everyday task lag boost faster\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1818    devic got great batteri life plu extrem lightweight perfect your heavi softwar user great student game stuff\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1819    great product backlight key board stated\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1820    nice product hp thought backlit keyboard doesnt\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1824    product good enough basic requir like net surf work ms offic basic applic though bit slow help sail needsit speed hungri peopl best peopl look budget laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1825    overal good slightli slow batteri backup disappoint mei got 28000 good price rangestylish look\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1826    good day day usag purchas check seller authoris resel hp otherwis face warranti issu relat product face lot phone call email abl resolv same\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1827    display superbatteri also good touch nd keypad smoothbut didnt receiv warranty\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1828    good qualiti laptop high perform processor betteri life satisfactori doubt one would get valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1832    good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1834    6 month uselow build qualityno good servic centr hyderabad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1835    good design valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1837    one better deal configur price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1839    best one daili use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1841    overal good product price rate\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1843    batteri good didnt receiv warranti card\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1845    soon saw thingi felt love decid buy itatleast decadei mortgag hous got loan itnow happi besid jobless homeless ofcours hopelessdo buy iti highli recommend itbravo\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1846    good laptopbut caus health issuesbecaus live 1 kidney difficultbut buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1847    amaz laptop look dual screen cant buy cheap monitor connect put besid desk cheap fact amazon recommend laptop look cheap laptop funny\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1848    good machineaft buy machin happyi lost 1 eye 1 kidneyand house\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1849    perfect overpr ram 32gb\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1851    one solid game laptop ultra portabl better avail optionsdu screen 144hz refresh rate cant complaingreat coolinggreat backlit keyboardjust wait i9 version\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1853    qualiti laptop good fast due 256gb nvme m2 ssd smooth touchi receiv defect charger manufactur agre replacementcal 18002587170 hp technic supportit say 10 hour batteri backup around 45 hoursno 1tb hdd 5400 rpm finger print scanner couldnt find alexa seller need care write descript product model number correct instead copi descript model seller take pain check appropri modifi description\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1855    model along dh1007 dh 1008 dh1010 sure backlitkey board book dh1006tu doesn’thav backlit keyboar confirm plz\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1856    good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1857    best budget game laptop concern batteri life batteri last 35 hour game 45 hour watch movi 6 hour work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1858    import messag seller sell old product alreadi expir warranti bundl extend warranti vari 6 month less base old product dont panic kindli contact hp india support center amazon purchas bill product serial number normal kind enough reset product brand warranti mine still processproduct review let set expect straight budget laptopbuild qualiti plastic flex much screen ip hd qualiti anti reflect key board well lay find back lit led bit bright choic camera okeyish mic sound adequ good regular skype calls1 tb sata old school dvd writer mean laptop heavi would day prefer trade dvd writer reduct weight mind need tabl work longm offic 2019 hs come lifetim free pleas follow process mention amazon video get activ actual log ms account instal word activ office2019 download instal instal version office365 triala expect sata boot take time gamer cant comment batteri back good price expect 45 hour regular worktoo earli comment perform ryzen i5 cost 5k lessoveral would term perfect home laptop everi one use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1859    good configur nice look valu money laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1861    like color dont like deliveri timingoveral product good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1862    nice one\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1863    superb product superb build wuality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1864    light weight portabl nice look laptopi like product come hand bag easi take anywher accord price think ms offic includ laptopbut 30 day trial version given company\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1867    need keypad lightani one know plz suggest works\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1869    hii request kindli send us fresh invoic copi product serial number model numbera face hardwar issu product hp ask us invoic letter proper serial number model numberkindli share invoic copi procedur \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1871    everyth good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1875    worth\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1876    compact lightwork finepurchas relianc digital1k cheaperwil give detail review timeoveral one thing saydont buy laptop amazon sellers\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1877    thank review buy one decid go ahead\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1879    slow processor dont like expect hp kind wast product wast money kind product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1884    edit 3use laptop play 4k content 4k tv drop frame rate less 15 realli struggl test latest 55 inch 4k soni tv suspect basic gpu unit cant person dont 4k display yet still fine purpos nowedit 2 observ upgrade1 photoshop light room work fine edit 24 mp file slr2 tri sort video file 4k dt 71 x265 etc file size much 34gb work flawlessli slightli stutter biggest 4k file doesnt play even half good comput even bluray iso file play flawlessli 8th gen processor good this3 track pad sensit excel good anyth els use bought hp laptop brother 2 year back track pad ordinari great improv here4 movi play back clariti screen top notch need get max bright abl see clearli dimli lit scene may compromis batteri life5 batteri life 45 hr show remain time chang bio wasnt expect better either6 fan sound continu draw attent daughter ask sound hasnt heard laptop pc make much sound room window close ac wife ask rain outsid wasnt realli expect other find obvious7 multi task good open multipl cpu crunch app work fine tri open larg excel file lot formula sometim make lesser laptop struggl bit work fine8 tablet mode good connect laptop music system via bluetooth make conveni listen music watch movies9 instal asphalt 9 see handl work without slow kick fan full speed heat well instal tri brows firefox work fine dont use chrome eventu becom heavi handle10 may know ssd make boot realli fast also help open app quit fast11 ram usag 60 idl ad 4gb headroom noticeable12 headphon output loud best qualiti sound ive heard test audio technica ath m50x decent sound bo play enhanc work connect headphon via 35mm audio output port search forum see meanif confus 8th gen core i3 vs i5 consid base clock speed i3 22 gz i5 18gz higher clock speed faster perform task need singl coreeven though modern app may capac use multipl core 90 still util singl core work i3 suit purpos fine game anyway need consid i7 much faster clock speed higher core tri basic test shop multipl laptop i5 i3 i3 better i5 i5 better i3 made educ guess bought laptop upgrad predetermin work well endedit revis review top origin one bottomperform laptop good ive done get there1upgrad laptop samsung 256gb ssd ad transcend 4 gb ddr4 ram purchas amazon indiath instal done via hp author servic center disk clone went charg lot more2got rid bloatwar hp assist biggest also intel rapid storag real system perform killers3 instal samsung magician handl rapid perform dont bother set this4 got rid mcafe av even though laptop come subscript instal avast favorit preferenceif instal kodi home media sw know take second exit program step close almost instantlyi honestli didnt think perform could improv much upgrad tweak laptopi eventu tri photoshop imag edit program wellnow im ok laptop also anyway decid upgrad ssd 8 gb ram final buy model laptopth fan doesnt kick often basic use still loud system load henc system heat also less frequent howev parallel task like work system window instal updat background realli slowif want much faster perform buy core i7 processor base laptop ssd 8 gb ram expens get cheapest i7 processor upgrad ssd addit raminiti impress hour use without upgrad origin reviewth good1 price cheaper shop 3k good discount top shave cost almost 4k2touch screen pretti good screen clariti good well though prefer matt gloss3th suppli touch pen mayb use apps4laptop fairli compact light5sound laptop speaker better compact laptop noth write home aboutnot good1weak processor fan start minim work load get louder pc im yet instal app came laptop check cpu load task manag cpu load spike 84 open task manag ofcours drop back normal laptop pc doesnt struggl much older gen processors24gb ram may enough either ram usag basic oper 603heat manag ordinari bare use lift laptop temperatur bit hot kept lap august cant imagin hot feel may non air condit room chennai4th charact key lightli print cant see keyboard clearli without backlight fairli bright light room\n
1885    look laptop is1 two one laptop plu tablet 360 degre foldabl detach come free pen2 full hd display hdmi port type c usb port lat one futur proof next years3 backlit keyboard must write poorli lit place times4 come free microsoft office5 small big write lot articl figur 14 inch screen right me6 without graphic card cut weight price dont video game editing7 reput brand8 price less 50kso hp pavilion x360 14cd0077tu model match requir amazon pay cashback cost 46k valu money come free offic 2016initi slow watch youtub video improv perform pretti fast appli tricksth low point low batteri life give 3 hour high perform set chose low perform set may get 4 hour think okay dont get everyth price point 10 day realli happi fargo requir similar mine addit give cool look other 2 1 touch screen gadget display \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1886    premium fit finish go featur mention model good combin form function grous lag initi boot seem gone away also week sinc ive use cant speak durabl particular piec replac piec origin one deliv refus start littl worri experi hp product great past let hope one also continu reinforc thatalso get 10 cb 6 month extend warranti order wplov in63\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1888     thi laptop sshd boot ideal fast smooth sadli case app crash laptop lag becom irrespons soon shift tablet mode also problem heat perform highli dissatisfactori macbookpro bought 2014 even work better new hp x360 got also even constant attempt amazon yet help get refund even replac product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1891    awesom laptop premium look review mention bit slow 4 gb ram upgrad 8gb run smoothli without singl lag ram updat even boot time chang notic adob light room photoshop illustr skylum luminar instal comput everyth work fine without lag 8 gb ram updat stylu along use draw illustr lack accuraci regular use note take enough i3 8th gen processor speed i5 differ core softwar doesnt actual utilis core effici one cheaper option buy laptop updat ram afford updat hdd sdd use current 1tb hdd extern hard disk give cute laptop deserv harddisk ram surpris you\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1893    batteri life wont even standbi 3 hour machin super slow cant open four tab browser applic startup seem slow disappoint deceiv look 😣\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1895    first great team work vendor amazon deliv laptop within 24 hour great easi set pristin condit great sound butter smooth touch screen respons nice back lit keyboard absolut silent processor fan total valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1897    devic arriv 2 day good deliveri time startup smooth pen provid work nice touch bit awryit work bottom right screen didnt recogn touch rest screen first time instal bio updat hp support manag applic also give warranti devic everyth work smooth perform good standard home use ddr4 2400mhz ram speed thing hard drive sshd boot time fastth problem window 10 bloat ware would suggest disabl needless background servic advertis suggest featur also cortana typic start eat away disk usag processor usageth processor handl thing pretti well tri pen krita draw program work fine fine pressur sensit input lag ok howev seriou draw would prefer someth els even devic good pen support enabl disabl touch use pen featur window 10 set prevent spuriou touch inputfor internet prefer mozilla littl less ram intens chrome everyth work aptli fasthowev dont expect run game smoothli video ram share even though handl simpl game like asphalt 8 microsoft store well enoughth ad benefit offic 2016 home studenty get word excel powerpoint onenot work smoothli without lagal good devic daili usag batteri last around 6 7 hour internet usag background program run bright set around 40 percent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1898    batteri life touch screen good laptop light weight speed good purchas custom ensur warranti activ date got laptop whose warranti alreadi activ one month back manufactur offer end user also provid end user custom seller\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1900    thank amazon team excel product hp also give good valu old laptop deliv complet updat confirm softwares\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1901    sinc purchas laptop face huge issu slow applic frustrat wifi disconnect often need enabl manual doesnt restor within month purchas go servic centr issu still problem persist worth \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1902    light weightcompactstylishhav touch screenspe ok normal usagecom offic 2016 need regist microsoft websit activ within weeka whole satisfi purchas rs46500 freedom sale offer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1903    overal handl look wise great two week earphon socket speaker stop work laptop speaker work amaz naa spent rs 50000 got dabba cant watch anyth youtub movi music fan dell time thought tri hp realli disappoint recommend buy hp laptops\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1904    laptop serv purpos don’t expect much it’ slow mention review use anoth i7 7th gen 8gb ssd elitebook laptop must agre see differ batteri life max 35 hour medium bright touch sensit good weight averag stylu plu need real draw sound qualiti mark\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1905    laptop stylish microsoft applic workingwhen call amazon peopl said purchas microsoft even invoic laptop mention laptop includ window 10and amazon peopl even help replac productjust wast money wast time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1906    hp pavilion x360 slow even respond screen turn black edg screen blink turn 360 degre unsatisfactori product won’t recommend it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1907    purchas laptop 1 month ago fargoodimpressives1 great experi system hang slow performance2 soft keyboard broader key help elderli young key press smooth almost silent3 touch screen fast respons use freeli without hiccups4 batteri life decent full charg last 45 hr charg also quit fast usual charg 15 hr decent level5 hdd system take littl time boot6 look finish quit decent also receiv word appreci select 7 come digit window ink pen also quit impress perform use multipl way sketch make sticki note remind etc8 dual core system process quit decent though system struggl larg data set macro etc9 1 tb hdd storag quit huge store load data word caution habit back data system goe might land lose god amount dataless impressive1 win 10 system could done 8gb ram 4gb ram may last long might sound littl less impress price2 touchscreen option sure screen scratch resist could find much detail even internet3 system dual core process slow medium larger data set macros4 laptop could made good connect option optic disc drive 2 usb port though 1 usb 31 port 1 hdmi port 1 gen 2 type c port make user purchas extern multi connect type c adapt cost rs 80005 laptop dedic volum control right side laptop avail volum control key well serv purpos addit volum key seem redund instead finger print sensor could add valu product price could becom much stronger product pitchapart standard 1 year domest warranti manufactur defectsdeficienciesconclus overal product quit decent purchas given lack finger print sensor give user way check option like lenovo asu etc strong user laptop less amount technic code stuff good choic go withthank hope helpful\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1908    write review around 1 year usag slow perform ad 8gb addit ram help improv perform littl better touch consist cursor jump one place anoth without user action display screen detach lid open lid hold right top corner left corner display come system restart smart watch charger magnet intern brought closer laptop connect usb port system restartednot worth money hp improv qualiti use case technic explain system failing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1909    laptop look good touchscreen featur eleg laptop horribl slow shed 50000 slow laptop aw still one compaq presario cq40 8 yr old 100 time faster laptop use mac air undoubtedli superfast lotonli neg side laptop aw slow work fast feel like return option feel like trap now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1910    bought mainli travel trek tour manag financ invest commun travelgreat product littl slow bother much use play video game moreov come window 10 basic offic tablet mode touch screeni reduc star bit slow hp suggest make faster like even ad addit hardwar would happi it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1913    bought laptop mani month back mani pro laptop like lightweight machin touchscreen genuin os offic build qualiti sshdrememberit ssd perform laptop averag upgrad laptop addit 4gb ram kingston 250gb ssdsamsung evo860 perform laptop improv drastic thereafter\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1914    laptop realli nice hang lag anyth first instanc hesit buy product onlin bought fulli satisfi realli awesom pack great ontim deliveri one small thing didnt like ink pen normal mark rest everyth perfect\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1915    product good far major issu wifi window 10 wifi would disconnect frequent tri multipl option per window 10 support websit none work final went hp websit suggest reinstal window that’ within window 10 setup laptop solv problem wifi connect cost mani week hope feedback help people\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1918    wish give zero star look refurbish one reject one hp factori cannot anyth first 10 ten minut switch hp reluct attend issu ultim buyer fool amazon seller hp done great job\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1920    okay great go better variant faster i3 4 gb ram worth it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1922    bought product 5th may 2019 gift open packag get updat done laptop slow open simpl word doc applic even programm instal still machin slow 10day return product sinc gift wife use machin 10 day period pass afterward contact amazon said cant return laptopn 10 day period pass replac machin problem persist cant anyth lie tabl gather dust order sleev dust gather secondli warranti suppos 12 month regist hp websit said 8 month tri contact hp revert back say fix chang say 7 month warranti remain even amazon tech guy visit place said model problem lag cant fix disappoint hp product esp sinc laptop printer hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1923    pathet best word describ product dont understand hp sell laptop good paperweight cant anyth much cant open singl applic file photo take forev look like i3 processor 4gb memori grossli insuffici os even start menu doesnt open click window logo left corner task bar absolut noth happen doesnt open dedic window key keyboard simpli cant shutdown way long press power button forc shutdown hp sell laptop shoot foot look like lower price laptop highli competit market place second rank player give better configur laptop price point think brand mean qualiti wake call naiv longer good old day gone today matter make money anyth achiev that\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1924    laptop look good lag run tube video take time approx 1 minut open googl chrome properli want replac item now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1925    okay i’ll honest review note person experi want write product futur buyersgot pavilion 360 i3 1tb ddr4 want good laptop niec basic school kid beauti look laptop amaz screen display ‘360’ thing dislik product processor recommend peopl wish multitask slow laptop lag ye i’ll harsh point hope comment amazon delet liter take time write guy want share someon will spend much amount devic can’t heavi softwar easili devic eg photoshopillustr work brilliant brilliant you’r look web brows watch movi netflix document make present etcbatteri life goodtouchscreen also good respons sometim lag fold devic bright certain level brighti disappoint glitch give fold laptop ask tablet mode suddenli get confus give glitch keyboard close also good sketch say won’t take palm’ touch draw click everywher also take review seriou person review go showroom first chroma outlet see first product offer buy oh wait product came nice pack thankyou amazon you’r love didn’t like think use macbook butteri smooth workflow god appl ruin live think age she’ 9th standard total benefit good laptop purpos recommend heavi user go i5 i7 chuck everyth buy appl beauti thing design everi aspect\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1927    look feel premiumveri nice display crisp sharptouch screen perform great aceptablebut consid price tag well hybrid ssd boot shut take agesi recommend buy amazon rather buy reliabl storethey sold faulti laptop necessari technic know address problemif readi spend hour day repeat issu custom care execut receiv empti promis 2 week pleas go amazonp replac product 3 weeks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1932    it’ nice laptop price rang use 4 month super fast boot sceen qualiti superbaudio crisp littl low bass overal would highli recommend spend 10k get i5 version much faster multitask better deal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1933    look amaz extrem light laptop 50k touch screen sensit take time get use respons one would expect perfect folk go need laptop handyoveral great product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1935    awesom busi person would need compact power best price rang go requir touch screen lappy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1936    got problem touch screen 10 day get deliveri abl use laptop 15 day cursor touch screen move continu allow work final 3 week hp technic support team chang screen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1938    look laptop fine super slow laptop hope upgrad ram help justf money alreadi spent buy tortoise\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1939    fantast product work well fast touchscreen good tooi ad 8gb ram even better\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1941    satisfiedbrand new laptop heat problem start hang heat colour also errat eg red show orang yellow khaki hp help line written laptop never connectsdont know regret buy amazon bought showroom problem would address now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1942    product good better best bad wors goodveri slow take long time startrestarttouch also good experi microsoft pro touch screen wonderful\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1944    work ok day becam slow 2 month didnt switch give warranti repair mother board replac even work properli dont know get replacement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1945    best suit offic need casual view graphic practic configur apt normal usag lag delay best point 360 flexibl superb touch light weight\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1946    perform poor extrem slow feel like break itcomplet dissapointedrest thing look wise good matter order showpieceveri poor performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1947    star rate would give 0 product batteri life normal light weight touch screen fine amazon send u alreadi use product kept laptop password previou owner \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1948    perfect two one need love use like tablet travel clinic work like laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1949    laptop 1985 machin basic task heat u hear fan nois hard disk alway 100 util upgrad laptop default 4gb 12 gb still suck pleas dont cheat customers\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1950    great purchas definit reliabl product hp smooth function product mainli purchas convert featur give practic tri digit art stylu good one learn pressur techniqu calligraphi digit art\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1953    give much nois near fan slow get hang often import issu product heat top bottom near fan harddisk feel like bought heater rather buy laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1954    bought laptop 3 month show true colour slow take 5 min start dont play game use make note present still slow iam tell u guy pleas dont buy product wast money esp budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1957    issu graphic lag open chrome browser multipl tab even blank screen observ hang suitabl graphicsht disabl enabl game good touch screen keyboard lit\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1960    featur good per price batteri backup also good get maximum around 2 hour normal use around 200 nits\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1961    receiv laptop look great quit earli tell someth perform speed good compar laptop let see goe come weeks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1964    1 year owner reviewsrceen qualiti good look good speed bad hang alway need wait open next tab good enough fast use sometim frustrat 😣\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1965    product qualiti superb backlit facilti amaz 10 10 thank amazonin deliv product 36hr particulari case im much happy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1966    excel product light weight easi handl rel louder fan noise\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1967    deliv product time guarante amazon thank ton batteri life expect howev overal perform consider good truli recommend product best features\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1968    product warranti manufactur warranti differ neither amazon seller will help settl strongli recommend buy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1969    laptop student fine cant edit stuff cant game also forgot pubg hang lot 4gb ram suffici u definit upgrad laptop slow think window update\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1971    nice product happi cours spent almost 15day review avail option purchas amazon got poduct exactli wanted\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1974    super laptop batteri backup mark laptop give 3 hr backup touch best\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1975    amaz laptop hp use person usetouch work smooth batteri life also good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1976    laptop act slow sometim take quit time complet work overal ok also need know get warranti product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1977    overal nice laptop daili use good speed screen disappoint bright need use 80 bright setting\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1978    think one finer window laptop sub 50k rang need basic optim make laptop faster overal solid buy 8gb ram would ideal alway ad later\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1979    overal product good design look cool friend mad product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1984    littl slow processingoth featur awesome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1986    good laptop work fine issu touch screen batteri life get heat charging\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1988    worth purchas hang issu processor slow touch screen goodyou increas ram optimis process make work decently\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1989    great screen qualiti or\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1990    best laptop best part 360 rotat along origin window activ ms offic life time sure batteri backup think 4 hour only\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1991    product best sometim take time start\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1992    supper supper student laptop bast student offic use nice like 🌟🌟✌️✌️✌️✌️✌️👍👍👍👍👍👍☺️🙏💯\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1993    work well first sound card stop work 2 month go get fix nice laptop apart this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1994    good speed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1995    good quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1997    great product hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1998    great valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1999    go worth premium look light weight work smoothly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2000    good finish sound batteri life\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2001    far good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2002    like laptop far\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2007    nice laptop price rang laptop look sexi btw \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2008    per expect good performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2009    good budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2011    good productfor speed upgrad ram ssd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2012    worth price slow machine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2013    ok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2016    good pc need dedic graphic card ram heavi game otherwis pc fabul love it🤗🤗\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2018    good support system speaker issu due updat windows10 hp backend team resolv fast great job\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2019    overal good product batteri run quickli need power bank extra batteri case power goe out\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2020    good expected\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2021    excel device\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2025    good deal product deliv safe hp alway best laptop 360 degre price good move hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2026    ram could better screen time feel lot glossy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2027    light weight look great sound okgood home student\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2028     bought laptop commerci useso would like incorpor gst number billkindli needful\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2031    look stylish suav laptop tend lag sometim still good purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2032    definit good investment\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2033    screen qualiti best better life best touch screen experi also best\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2034    love hp pavilion x360 14cd0077tu light weight sleek design batteri life touch screen good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2035    ms offic got deactiv though includ itveri disappointinghelp plz activ it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2038    awesome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2039    screen qualiti good along touch screen betteri life user friendly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2040    slow two month old laptop perform wise look like old one\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2043    best touch screen laptop hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2044    valu money perform ok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2047    worthi better buy 8gb ram model\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2049    touch screen recept joy use overal excel product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2050    best laptop reason price much better lenovo laptops\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2051    good laptop work fine bit overpr i3 processor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2052    look perfectbut product damagedth cool fan alreadi working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2053    nice working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2056    item good warrani show 5 month left extend warranty\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2058    slow run devic amazon hp pavilion servic good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2061    slim light weight laptop good work program entertain \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2063    simpli best price rangeand valu money product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2064    awesom great money valu product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2067    good product studi movi normal work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2068    best laptop 💻 ever\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2069    good laptop back larg tablet\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2071    expect someth better pricerun much slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2073    good expect like macbook use macbook last coupl year\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2074    good packag believ price still high key borad basic function build qualiti satisfactori updat rest months\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2075    premium laptop awesom batteri life everyth terrific\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2076    lack addit gpu memori essenti fast better render imag model heavi game video edit pay grade laptop best offic work ms offic homr student free profession writer coder screen small ie 13 inch enabl laptop excel batteri backup minimum 56 hr wifi light innov design hing cherri top screen show awesom cleariti claim sound system finger print senser glitch keyboard feel good finger port expand function unit 2 usb port way close side quit unsettl overal 13 inch piec awesomeness\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2078    get spec spec sheet 256gb ssd mine boot 10 restart almost 3040 fingerprint reader accur need place finger properli screen good batteri backup descent ive use 56 hr contin wifi occasion youtub msoffic email game main attract weight fit folder good offic goer includ game also heat much feel doesnt heat alway may updat attract piec got 61474 bag ms offic 2019 mcafe 1 year subscription\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2079    light weightscreen awesomestart fastbatteri life good could betteral valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2080     best\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2081    best price look also goodand spec best pricewel done hp omen \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2082    price high worth money tri build pc spec india go thousand rupe less costli otherwis good play aaa titl like gta5 crew 2 ultra set 50 fp nativ resolution\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2083    king comput world best macbookjust go get nice experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2084    kidney better laptop 🥺\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2087    dream dont know completed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2090    month use laptop realli impress performancey sure amd radeon 520 isnt enough game game like cs go gta 5 fifa 18 etc work realli well get averag 80 fp 1080p medium settingsr worth it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2091    best product buy rang bought laptop 8gb ram 2gb graphic bought cost 33104r only\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2092    im truli satisfi perform laptop batteri backup especi consid cost paid thisalso get 10 cashback 6 month extend warranti laptop order vqr inahop help help pleas press help buttonhappi purchasing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2093    amaz product ratebut batteri backup perform 3 hour good loptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2094    lap top featur realli awesom product origin 1 month usag product doesnt work properli keypad work dont warrantyi total disappoint product never buy product appario retail privat ltd dont encourag seller amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2095    origin product hp think twice buy itwork goodcondit goodal good origin graphic card insideno invoic therea real hp product hp give type warranty\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2096    good medium rangemedium graphic game run easilynot long last batterynot work profession good student last hp dont give best valu product medium range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2097    love smooth laptop game do instal ltsb window 10 fast smooth love itgot price 26000 exchang old i3 2nd gener exchang price around 7000 i3 2nd gener old laptop op dope\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2098    faulti part scratch top call hp custom care inform regist person name warranti expir 15 day book returndont get fool invest 38k book onlin instead go offlin store purchas it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2099    best ever product price give 8 gb ram 2 gb graphic good \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2100    hi teampleas help exchang last order hp laptop product work even unabl laptop instal windowsi contact hp servic center told repair new hardwar charg separatelyi even use laptop minut face problem replac time completedpleas help exchang productpleas give call urgent basisthanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2101    differ dproduct sold extens warranti amazon display hp websit serial number contact hp custom care regard warranti issu till date problem solv camera qualiti poor charger point play system end system display qualiti moder proper space monitor base may lead damag product effect 2gb graphic card\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2102    work good big screen good claritysound less system work good batteri good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2103    excel time deliveri amazon work smooth fast\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2105    best qualiti product 35k excel time get hang near 2 3 minut start problem face think u understand current statu laptop work 1 month only\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2107    realli good play gta v\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2109    purchas one slow recommend other pay littl buy i5 processor instead 4 laptop home 5th oneaft one year give scrape\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2110    laptop good game basic thing disappoint thing sound qualiti els laptop best 😎😎 love it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2113    pretti poor perform window 10 instal take forev boot could live small activ like open browser take like 1520 second acceptable\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2114    bright control display work updat driversexcept everyth good good game lag all\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2116    realli good pc workingveri good batteri lifeful hd screen resolutioni face issu till date\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2117    good product dont give warrenti inviose\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2119    excel product problem laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2120    asinb078mw5w3z hp 15bs658tx 2017 156inch laptop 6th gen core i36006u8gb1tbdos2gb graphic black sir bill print perfectli plz resend bill recept\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2121    good productwork finerun 4 virtual machin timegr delivery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2123    good decent comput great students\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2124    great laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2125    ok mark like great ram still perform like that\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2126    averag product good gaming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2127    built qualiti good overal good laptop specif price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2129    good device\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2130    laptop good normal user support fhd display fast charg good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2133    overal good product batteri backup less 230 hours\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2134    worth money definit tri this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2136    good price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2138    product good dont receiv origin bill till now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2139    good value\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2140    product fabulous\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2141    nice product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2142    good product driver cd avail box\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2146    good product overal speaker volum low\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2148    realli great thank amazon \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2149    best product price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2150    great product perfect price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2151    graphic good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2153    nice model\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2155    nice laptop daili uses\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2156    like laptop good one\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2157    laptop qualiti good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2159    like good sound quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2160    good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2161    love good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2163    good procduct\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2165    use lenovo 2 year pathet experi 1 year batteri problem screen problem keyboard problemnow use laptop sinc month keyboard tough compar lenovo custom support proactiv help would recommend guy want buy mid rang basic laptop around 30 35k pleas tri extend warranti time offer run laps origin warranti periodther lot differ 4gb 8gb ram type process fast apart get 2 gb graphic card use high end websit mid rang game boot pleas updat graphic form redeon site check activ alway get best experi batteri back superb four cell power never leav charg batteri 100 month twice tri drain full batteri long lifethough look bit bulki qualiti top notch never go lenovo slim design even satisfi custom support encount wit number time want thank amazon deliveryhop review help thanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2166    nice laptop great perform batteri good laptop found minor defect insid laptop took laptop boolt free place move freelyy insid nice product thank amazon use laptop sinc 3month problem regard touchpad laptop got replac warrenti replac got problem\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2168    best price rang use 2 week graphic card 8 gb ram best point laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2169    realli good 1tb 8gb ram suggest one student offic work radeon enough gamer play game like gta v fifa 18 low graphic qualiti work smooth happi studio work video edit softwar like adob premier pro stuck it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2171    happythank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2172    dont buy autocad staddpro work properli happy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2174    good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2175    excellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2178    good productworth buyvalu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2182    dude say best laptop well think best cost well u play game high graphic work laptop get heat well would prefer i5 game specif best valu money bought local store would say go low budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2183    great laptoplook better display pictures\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2184    buy hp 15 bs675tx 32500 add 4 gb ram total cost 36000 advantag u get win 10 bs658tx cost bs658tx u get higher ghz 23 bs658tx win10 also\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2185    laptop best price rang ye play gta 5 good first laptop dont know much heat much batteri backup normal play game heat batteri discharg realli quick recommend play plug window 10 run nice 64 bit boot time long movi experi good sound realli clear good deliv good condit bodi tightli pack that big issu port work good need laptop need fulfil game movi song offici work that tri till satisfi end care buy laptop first laptop also laptop laptop big thing everi research found best know dual core didnt knew buy dont problem it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2186    excellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2187    excel work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2191    nice laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2192    everth pretti good except speaker output low\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2194    good laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2195    nice quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2197    bought comput great expect within 3 month problem screen remain steadi one day suddenli blank one year warranti also bought 2 year addit warranti sinc warranti period kindli arrang need dealer respond thank you\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2198    excel product till date need extern power sourc heavi game graphic \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2199    month work laptop perform good mainli utilis architectur relat softwar work perfectli me\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2200    worth buy product hpsound qualiti awesom batteri life good ok 5 6 hr video playbackamazon deliveri nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2201    good product superb product hpthank amajon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2203    product good excel come good batteri life help work longer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2204    horrif experi product purchas onlin though amazon product wasnt perform per specif product come 10 day replac polici hard disk fail 11th day nightmarish experi approach servic center 12th day got know hp 14 day replac big relief polici good servic support experi servic center servic center issu dead arriv doa letter 13th day got know replac done seller daymarish experi time vigor follow includ warn drag consum forum non respos custom support repres seller attentionit wasnt amazon somehow manag return product 20th dayi follow major work experi product slow start time two minut per custom support normal contact twice work durat productit latest processor latest gener dont high clock speedit year old graphicsthough eye catch design led keyboard heat problem even noisi fan wasnt enough cool batteri hour also low around 3 hoursi didnt play game use program found respons slowgood servic support onlin chatphon well servic center\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2207    bought offici hp world showroomth moment start use disk utilis hundr percent everi time even idlecontact custom care confirm doadead arriv told 14 day replac polici issu new laptop dealernow come new one take 23 minut boot despit latest i7 8th gen cputh major drawback hdd 5400 rpm driveaft spend 70k machin nightmar feel like buy thiseven basic task would take long time like pptword even java programswritten took 6 second compilei shockednow order ssd 120gbm2 thank hp otherwis remov hdd given realli shinesus 2tb hdd data drive ssd boot drivenow laptop boot 5 secondsno exaggerationnow machin work like true champsobefor buy make sure add ssd boot window thatthen worth moneyedit year purchas motherboard got fri luckili paid extend warranti got free els would cost 35klabour charges\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2212    cool laptop batteri backup good \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2213    best laptop awesom configuration\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2219    receiv worth product seller product sell finest qualiti worth product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2222    sound build qualiti need improv work wonder ssd instal place hdd hdd replac sata dvd drive caddi ram upgrad upto 16 x 2 gb possibl go extend warranty\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2223    best laptop hp qualiti cs provid rangefrom midgam program special run android studio doesnt lagsound also great provid 30 minimum sound max compar 30watt 21when youv turn power saver mode case use window provid standbi hoto 8 hour case fulli charg fullcharg nokia 51 usb standbi 3 timesif want unleash full power beast need attach one 128256gb ssd one 8gb ram your good go\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2224     best laptop rang better perform valu money builtin intel grphic perfect better batteri performanceprocess speed betterfor develop sound qualiti perfectbut low volum amd radeon 2 gb necessarya compar builtin intel graphic perform becom weak batteri beloww 10usb port easili damageablemi 2 30 port partial damagedaft allbuy now😍😍😍\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2226    good laptop great configur fast deliveri amazon laptop built qualiti much great use dell compar low camera decent video call overal go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2227    yeah it’ good use far complaint one thing would good come window installation\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2228    sound system goodbut batteri life lowworth buy due less price great specificationbright problem seen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2229    good configuration\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2230    excel product core i5 latest 8th gen famili look perform good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2231    like product laptop work fine good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2233    nice qualiti laptop hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2234    nice product worth go cost\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2235    amd 520 graphic card m330 use month februari work finey batteri chargr decreas play high graphic game high graphic need applicationbut pro 90 90 min awesomei play gta 5 medium graphic pubg alsoit work finego itand tri buy offlin storesi hv pay 44500 \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2238    worth buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2240    good laptop bought 39500 genuin product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2242    laptop realli nice come perform one problem face less month buy lap display friend also similar model display also work month\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2243    good laptop hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2244    best price 👌👍\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2245    extraordinari speed ram led display made laptop feel like i7 super item make sure oper key gentli use least next 10years\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2247    valu money deal entrylevel laptop job made simpli brows 23 site open email work singl excel sheet made peopl multitask work lot sitessheet simultaneouslylaptopscreen size 156 inchclock speed 15ghzram 4 gbhard disk capac 1tboper system window 10o version window 10 homegraphic\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2248    processor slow 2 number usb port working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2249    good laptop daili use normal use use net\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2251    os instal got done pay 700 laptop restart self even 6 month bought went servic center happy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2252    better beginnerss stylish look n slim\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2253    got deliv today check warranti hp websit show 1 month left surpris new laptop contact hp hope fix warranti info soon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2255    good common tasksbut good video gamesit like slow motioni feel processor lags\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2256    like product one dissatisfact product wifi connect inbuild add addit product best range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2257    recommend offic work watch moviessound goodeven without extern speaker movi enjoy dialogu speaker crisp bass moderate\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2258    except window problem everyth work nicely\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2259    best seller deliv describ site pack good got good pice price worthbest home\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2260    valu money paid work excel well without issu deliv well time well packed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2261    good excel deliv window uninstall\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2263    like sound qualiti actulli afraid buy laptop onlin one friend suggest amazonand believ amazon product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2264    good qualiti lag much\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2265    instal pirat os window 10 perform satisfactory\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2266    basic gift product one employe know much qualiti current work howev look wise product ok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2267    day one complain laptopi tri hp toll free rectifi problemthey r ask passcod understandingpleas help\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2269    thu product lower hp u built better product want return this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2272    daughter regularli use laptop easi use problem perform good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2275    valu moneyi bought hp do laptop 17000 great indian festiv offer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2276    use serv well\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2278    like you\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2279    laptop qualiti good hang work batteri backup also low\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2285    viri good product lost price amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2286    excel product strong good ruf use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2288    seem ok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2292    laptop best usk sath cd nhi aayi h h motherboard ki\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2300    good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2302    want revis invoive\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2303    price good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2304    nice experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2305    nice long life\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2307    awesome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2315    happy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2317    good quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2320    amaz product tq amazan love amazan\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2323    alway hang softwar like vlc player media player etcwindow 10 work properli laptopwhil purchas model 1st updat driver hp websit amd graphic card work properlyit show videotdrfailur blue screen comewast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2325    look delic doesnt led indic identifi whether turn onoff good strictli budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2326    given spec site deliv spec 100 match spent littl buck market place os instal n driversinstal win81work pretti smooth without lagsbatteri charg period super fast last 5 hr mix useag media n onlin browsingwifi superfastexcellent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2327    good laptop price thank amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2330    work condion hp laptop exel accept vedio show workingther big prblm vedio showingi hope u take prompt action\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2333    good product good qualiti time deliverybest price like amazon products\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2334    good pictur resolut good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2335    good product 10000\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2337    good hardwar function lightweight touchscreen window 10 os instal think seller tell product descript even setup guid also show variou featur window 10 oper system\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2338    reciv product tuesday good laptop lover price recom ami buy also pakeg product good thanku much amazon happi service\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2340    laptop perform goodhitshink fan avail laptopram slot 1 ddr4charg quick\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2342    wrost product ever purchas amazon brows internet restart automat processor 15 ghz instead 18 ghz\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2344    everyth fine slow processor need patienc perform task\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2345    brand give duribl use busi purpos faster instal data browser doesnt give dual core behalf caseif window free do 20 work wellthen laptop equal dual core processor laptopthat like laptopit window do 20 processor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2347    ye laptop okey work good driver cddvd avail product badalso could avail till 10 cash back visa debit card cod amazonpleas look matterthanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2348    overal sytem good 5 minut laptop restart dont buysound qualiti good bad product loos money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2353    dear sirkindli requesti need invoic ugrent leptop hp 15 bw098au 2018 156inch\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2354    nice product thank amazon offer discounts\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2357    best 2 buy 25k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2358    oper system good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2359    nice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2360    emi process acchha hai ki nei laptop work good thiss qs review agar mjhe emi axi bankk debit card se lena hai tho kya monthli 1000 mere bank ac rehn se emi process se lap le paunga\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2361    servic product best other\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2364    laptop good give product key cant open microsoft\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2367    good expected\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2368    good product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2370    good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2371    ive use past one monthprosfast charg workingsleek designnic speakerconsit heat pretti quickli convert tab mode fan outlet back get coverd back screenit easili get pretti warm put bed constantli need let fan pump warm air user need use without block fan spaceif buy design purpos pleas dont stylu pen isnt great well would say averag precisefor entertain purposesy definit better price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2372    premium fit finish go featur mention model good combin form function grous lag initi boot seem gone away also week sinc ive use cant speak durabl particular piec replac piec origin one deliv refus start littl worri experi hp product great past let hope one also continu reinforc that\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2373    excel productlik work far best laptop ever fast\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2374    enorm heat slowlook great perform wise budget laptopand sound stop work 1 month useno way return productpatheticr disappoint time amazonwil never ever buy product here\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2376    7 month fan start make big shhooooo kind sound extrem heat left side hp technician replac fan problem resolv replac open motherboard batteri pathet watch costli laptop requir repairsi ask replac let see hp respond now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2378    good one 5 star 🌟\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2379    best product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2380    good 2 1 hybrid necessari featur better compar dell 7373\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2381    price best laptop get\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2382    good process slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2383    superb buy work realli great good batteri backup awesom screen touch mode make easi browsing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2385    laptop work well week stylu stop function within daysth laptop get hang continu doesnt start timesworst product everrais hp help desk ticket get responseamazon qualiti product degradedi want money back \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2391    realli one best qualiti also good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2392    though give less configur worth laptop work best it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
Name: clean_text, dtype: object
In [23]:
Negative_reviews=df['clean_text'][df['rating']=='Negative']
In [24]:
Negative_reviews
Out[24]:
4       let start messag state unsatisfactori product i3 7th gen 4gb ram slower celeron processor laptop infact cant compar simpl basic task like send mail cant work laptop forget game etc slow 100 memori 100 disk usag show time u open task manageri mail hp look messag hp review seem quit promis someon hp custom care take laptop solv replac sad thing one even bother repli mailso sick hp service\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
5       bought laptop day agoit mention amazon laptop lifetim valid ms officebut actual notw need renew everi yearfeel disappoint amazon mention wrong feature\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
8       display qualiti speed bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
10      first boot took around 230 hr never boot alway hang boot total wast money tension return trashpro advic goto showroom first tri lappi dn buy onlin market sell crap\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
11      pleas go anoth brandfor mine system crash within 6 hour deliveri laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
16      wors purchas ever amazon wont complain anyth amazon hp provid low qualiti product laptop display got damag within 1 month without physic damag ask warranti reject say manufactur defectit actual manufactur defect due low qualiti part hp blame custom occurancedont ever trust hp products\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
19      laptop dead slow use msi laptop 2013 model far better actual laptop cannot much slow sure origin pleas dont buy onlin ecommerc side would say never onlin replac one receiv first replac one also bad feel break wait open new tab also sad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
23      realli disappoint perform laptop first day till never work normallylot hang issu everi task take minimum doubl time also work slowli even type someth appear second realli tire use laptop regret buy look wise awesom batteri life also averag one major problem laptop get stuck command given includ start laptop open file type anythingi dont know bought laptop serious expect amazon deliv product like thisi sometim feel even origin \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
24      worst product hp perform slow applic hang frequent got defect one speaker head phone work warranti also show one year\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
30      slow laptop bad purchas stuck sell piec junk\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
34      per expect built qualiti poor perform per specif think alway buy hp outlet\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
39      product activ key missingveri slowim total piss upplz never ever buy product god sake\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
40      bad system slow get hanged\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
43      bootup process slowm offic antiviru trial period boughtther drive partit c drive batteri backup time 2 25 hour onlywifi suck jio 4g data fastlyhp mention usb 2 port usb 3 port type c type usb port missingkeyboard letter thin difficult read type low lighthp provid keyboard back lighthp reloc heat vent instead display areawhen use long time bottom area display screen overheatingit may affect screen laptop heavi liftotherwis nice laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
44      kaam chalauhav heat issu chargingso much hang problem normal daili use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
45      1befor arriv order hp laptop got messag someon come instal nobodi came2 read buy clearli mention replac within 10 day dont performance3 realli dont like voic qualiti pictur qualiti call replac anoth productbut got know cu care replac one default cant replac product mentionedr realli disappoint regular custom sinc mani years\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
52      pleas dont buy junk product even dont want rate singl star choic gave 1 starstart boot everyth bad boot nearli 3040 min click app take time come back sometim come back cant believ i3 4 gb ram worst product ever seeneven 19th centuri comput good compar junk product im sure hp deliv product didnt qualiti check instead correct sparepart hp deliv model scrap item hp employe never kind worst experi hp product hp deliv kind product hp share valu zero soon pleas wake call back product immediately\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
53      total disappoint product thought hp done job slow often hang hp local product brand product so\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
55      decent product price rang could lighter though window 10 preload definit valu money one button get stuck amazon send technician verifi immedi replac new laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
61      bad experi worst laptop hang problem first day even person use use laptop play game still hang simpl task thing even i3 processor becz i3 perform well seller fraud laptop i3 sticker insid tha laptop garbag fillworst perform worst laptop dont buy go dell laptop good hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
63      laptop slow take lot time start batteri backup also bad warranti card provid along laptop poor display msoffic valid 1 month\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
69      window 10 oper smoothli must least 8gb ramth laptop extrem slow laggybuy end regret\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
70      extrem slow machin use ms word laptop extrem slowon boot disk util alway 86 100 processor util stay 47 regardless leav idleit upto mark perform consist specif advertised\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
73      bought laptop sinc day one laptop work properli lodg complaint given period mani attempt im unabl contact amazon custom service\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
75      bad experi amazon like got use productliter pack laptop bad say pack alland anoth surpris unbox laptop alreadi profil creat name “jitu pawar” password protectedy must seen profil clicknot expect amzon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
83      worst laptop worldissues1 dead slow2 frequent hang3 batteri backup mark4 troubl download anything5 need admin access everythingoveral wast pure hard earn money product worth half go different\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
85      worst product ever bought amazon hadnt seen worst laptop life bought product mother three month ago begin onward product get hang frequent point time unabl atleast switch product note even though product site warranti hp servic team reluct onsit servic pleas read decid purchas producthp must reengin must replac another\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
86      laptop primit configur outdat soon wonder laptop still market hpthe good thing start quickli time taken sleep wake lessth bad thing excruciatingli slow 4 tab open browser especi googl chrome like chanc laptop freez tabsth wors network adapt doesnt support 5 ghz band 4 gb ram inadequate\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
88      worst ever product hp till nowit broke trust hp im use hp product sinc mani year pl inform hp dealer atleast sought laptop warranti period\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
90      laptop poor finish gap seen toward right side keyboard panel away cd disc scratch also seen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
91      worst perform ever price rang extrem slow less sound\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
92      bad experi product use 12 month suddenli one spot appear screen gradual increas went servic center tell screen damag fall warranti suggest dont buy laptop expens product amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
93      speed machin slowest good basic school work also wonder hp bundl bad product might reason low price advis anyon buy even price reduc 50\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
95      someth quit disappoint perform quilti buy onlin slow system slow system seem defect like\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
106     devic gone faulti within month devic stop booting\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
107     defect product send sellers\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
108     keep hang everi time one worst laptop ever bought compar dell i3 2 nd gen 4 gb ram 320 gb harddisk fell old laptop far better laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
109     worst laptop never seen useless devic life slower even nurseri boyll faster device\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
125     compar price worth batteri drain fast ☹️\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
131     product qualiti issu fragil wast money servic poor never buy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
138     worst product dont buy cant work multipl window hang lot slow ever click wait wait wait respond fanci peic look attract worth it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
142     new laptop take longer time respond appperform bad dont buy this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
144     one half month batteri charg today show 79 batteri unplug ac adaptor directli swith pleas let know answer solv problem\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
145     materi bodi make badlik glass break type solid materialveri bad make material\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
148     use last one month got small defect right side panel fulli attach screen laptop slow day observ much use henc havent check regularly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
151     useless\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
153     problem operation\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
156     keypad bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
157     dumbest decis i’v ever made slowest laptop seen even clean format doesn’t work pleas don’t wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
158     worst lapi ever seen slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
159     slow take lot time start hang bought kid middl rang laptop useless user experi frustrat wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
160     pro light weight slim designgood batteri life fast charg extra featurescon take hell lot time start boot system kind slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
168     buy product face hang issu keypad work rais complain one resolv issu bad product servic hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
169     worst product third grade qualiti made china dont buy onlin worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
172     product slow worst product hp compani dont buy laptop hp compani amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
174     wast money work full hang problem take much time pleas see vedio\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
177     verri slow screen qualiti beri wrist product look like 1year old verri disappoint hp quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
179     perform laptop poor it’ take time open app file alway get hang use me\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
180     worst product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
186     worst money suggest dont buy laptop keyboard good type also visibl word mention key due silver colour key board\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
187     worst laptop marketveri slow even basic thing brows all\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
190     purchas got know came ms offic worst experi ur regular customer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
194     product bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
197     bad product hp slow process bad custom service\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
203     damag laptop receiv disappointment\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
205     work properli need return laptop urgent line display laptop work 10 day face lot problem pleas product take return request take return get repair get warranti laptop hp compani go get repaired\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
213     bitter experi amazon cddvd writer work properli nois hard disk\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
216     good laptop atleast right dont issu great budget laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
220     even 06 month complet batteri becam non function laptop doesnt work without electr tri claim warranti hp deni claim worst experi everthi may due design batteri protrus batteri even surfacelaptop overal function good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
243     amazon contact laptop hap touch work fake fake fake amazon fake\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
252     lag lot poor screen qualiti graphic low dont invest money wast product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
264     wrong product found product found dont optic disk drive theyr show pic optic drive\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
273     wit almost 3yr complaint worth money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
277     bad product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
278     ive receiv defect product wrong warrenti period\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
300     packag damage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
307     bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
308     defect product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
310     bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
313     bad laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
327     poor product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
332     bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
360     worst built qualiti use sinc last 3 month got crack near keyboard also batteri lock work properlyon work et al\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
371     badnev expect bad displayfar behind averag displayregret buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
390     process slow sound system bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
392     hang problem\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
421     laptop hardwar problem surround cpu usag day bought see 100 cpu usag skype window explor run laptop think minimum one would expect run smoothli laptop get heat doesnt respond click next day onward laptop start autorepair autofix cannot open laptop till today horribl experi buy this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
425     batteri life last 2 3 hour max normal use screen qualiti littl bit lighter weight fine per mention got laptop charger nothingveri simpl bag etc also packag worst simplic cover cartoon im happi offer got rs19999 rang stuff good higher 20k dont go stuff\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
432     posit review product make fool product useless sure regret buy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
434     black dot line screen within 15 day use worst product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
441     awesom built price rang 18k nvme ssd boot 2 secit doesnt feel like low pentium processor like regular i3 i5 hdd even slower pentium nvme ssd though i3 i5 process power\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
460     laptop good fail boot 10 day use hp proceed replac motherboardi dont know happen warranti period over\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
481     there lot problem softwar slow shut down automat file get currupt request look matter resolv issu purchas 2 week ago\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
488     useless laptop special display poor read letter articl publish websit pl advic upgrad one\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
492     keep crash averag twice day wifi keep disconnect mayb due low strength adapter\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
496     fantast product rang never seen type excel work laptop go never disappoint you\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
498     display good boot time awsom wrong specif describ usb 30 port port usb 20\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
502     space limited\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
511     worst product multipl technic flaw seen recommend\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
552     product ok amazon peopl worst\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
562     doubt amaz products\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
563     waste\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
608     use product hardli 5 day found rest thing good batteri backup realli bad start full charg batteri goe hardli 335 hour worri go line long work product claim batteri life 5 hour truenot happi batteri \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
620     broke poor qualiti even servic good replac laptop pathet servic amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
625     screen work four day purchaselet see guy exchang sad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
633     worst decis ever buy laptopit heavi look shown pictures\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
654     lap mani problem trap get hang everi time press right buttons\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
659     pl go full hd screen one screen pathetic\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
669     bad product never buy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
690     let tell cautionari tale bought laptop late feb 2019 gone servic centr thrice crash third month motherboard crash june system work wait 15 min start chrome doesnt work ms word crash everi hour decid call hp peopl repeat catchphras like sorri let connect somebodi somebodi tell system need get ram upgrad system crash call till decid fault trust hpmoral story1 never buy hp laptop2 never believ custom care person clue 3 never trust hp service4 dont fall touch x360 gimmick given hide fact machin doesnt work 5 final choos anyth hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
691      i bought hp lapotp june 2019 amazon start problem start complain hp attend defect onsit never came forc run servic cenetr 25 km away hp aks rs 21000 laptop warranti hp websit show laptop expir warranti never buy hp laptopspc hp doesnt honour warranti make custom run servic center hp custom relat manag concept u got problem u r satidfi hp rpoduct repair etc man point contact shall ensur u cough money repair everyth put blame customerinferior qualiti materi use base panel hing dell laptop self compani dell excel problem laptop replacethey dont fight like hp bewar u want save 23ku end crying\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
695     worst productscreen poordont ever buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
696     low sound cheap plastic touchpad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
699     no\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
702     disaster\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
704     fraud\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
708     worst laptop write 1 month use batteri markno keyboard light run max 3 hr speed avg highli recommend gift brother student that return dont buy u r profession worst laptop ever hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
721     valu money purchas rs31500laptop batteri 35 5 3 35 hour maxdisplay 4 5 full hd displayboot time 4 5 05to 10 sec instal critic updat manual improv boot time perform window 10 homerespons 45 5good daili use studentsdidnt check perform gamesoveral perform 4 5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
733     use month review hp model support window 10 cant instal window 7 get error acpi fulli support contact bio vendor bio upto date per vendorfor linux environ wifi support need buy seper wifi adaptor dont buy intend use ubuntu kali linux linux environ graphic manag okyou get 250mb video ram worst part cant work adob program properli batteri backup 3hr watch full movi 2hr15minut 100 finish 20 remain camera qualiti good display reflect lot friendli graphic driver problem supplier doesnt accept gave feedback get bsod error applic use graphic that applic problem pure manufactur defect dont accept window 10 googl disabl much bloatwar increas batteri perform use dark mode avail person rate 25 medium type user 45 normal users\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
734     product got upto mark think amazon given use one bcoz yhere problem switch abruptli dont work sometim abd bateeri backup wors new laptop abd give batteri backup 2 hour\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
749     use brows net light gamingso far satisfi productrest doubt amd one deal clincher given festiv price pointprostot valu money 24k port avail includ dvd rwthe ryzen 3 good problem compar i5 imho handl video game smoothly4gb ram enough mayb less w10the key board touchpad convini usesound loud goodconsbatteri backup 25hr max 3 cell onlyslow bootup window 10 maybelot bloatwar uninstally get payygwupplain jane looksth screen resolut poor hdkeyboard easi use night low lightsuggest upgradego ssd 120 gb amazon 25kram need boost 8gb maybescreen replac fhddo may leav light behindal look loaptop surf web weekend offic work play game ocassion want budget laptop go sure disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
750     bought laptop si birthdaybefor batteri dead experi laptop1amd ryzen 3 good light game edit browsingand watch movi onlin shows2batteri backup game give 1 hour batteri backupdocu edit video edit give almost130 2 hrand brows give 3 4 hr last watch onlin movi give 4 hrand watch download movi give batteri life 5 hr bewar plan buy laptop see 13 hour batteri backup3display main con laptopok ok type displayonli hd720p 20184sound sound output machin good im use dfx enhancerwith dfx enhanc sound output great5 performanceov laptop perform well add m2 ssd ad samsung evo 860 evo better perform 4 gb ram1 extra ram slot availablei ad 8816gbcrucial ram coz system support dual channel ramaft upgrad laptop boot time drastic reduc 2 minut 8 secgam experi laptop good like pubgc gofortnitefarcrybattlefield 1rocket leagegta 5mortal combat moreoveral 35 rate 56problemwithin 5 month laptop batteri dead charginghp servic also suck complaint regist 10th may still im wait technicianthey give excus timesiryour problem solv within 2 day alreadi pass two daysi alreadi attach picsso never recommend hp product anyon elsethey abl provid servic hyderabad metro citi dont buy hp product never trust guy tell good hp servicethi exampl hp service\n
752     inspit increas ram 8 gb speed machin improv irrit work laptop even half hour damn slow display get freez open new tab take timeetc etc also problem charg doesnt get charg lid open posit everytim put machin sleep mode charg batteri dont know amazon sell junk laptop sinc replac window gone could chang wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
753      receiv laptop turn fine boot upwhen start laptop cpu fan spin full speed first moment screen remain black wont even boot bio also check warranti hp websit show 9 month remain warranti instead 1 year think seeler tri sell defect return product disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
754     harrow time handl manufactur seller problem cant amazon handl warranti issu day product order place seller send inform manufactur updat warranti took 10 day warranti updatebatteri poor display fine hope ad ram itd perform decent current slow dont know itd handl game mention earlier reviewshp custom care also race worst perform race along side ifb samsung morphi richard others\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
755     deliv 17th octob week becom faulti complain hp technitian came un abl rectifi fault complain still attend constrain initi legal steps\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
761     initi decent laptop month use began slow drastic make point remov file everi week onto extern hard disk keep laptop empti possibl even seem slow gradual wouldnt think longlif kind laptop even reinstal os laptop solv problem week went back usual slow self\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
773     worst laptop ever seen lifepleas dont buy itwhen right click click new immedi hang start work 10 15 minsveri bad everi aspect neither good ms offic use anyth elsecomplet useless laptop even amazon refus return replac laptopi done everyth like updat driversupd softwaredi clean upetc amazon agent told still laptop slow laptop hang 100 time day\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
774     first day review slow startup took almost hour initi set overal slow open app set take longer usualgood time deliveri amazonwil use day try————review 5 daysslow continuestak lot time perform certain basic task ex below1 right click desktop open ‘new’ submenu take around 30 seconds2 open multipl browser tab chrome make system slow3 set tab take around 20 sec openoveral satisfi performanceth posit batteri lifefurth updat start face intermitt wifi disconnect issue———aft use quit time give 1 star option zero star utterli disappoint hp 7th laptop life worst one agre price less mean compromis qualiti still laptop dead slow take 2 minut open googl chromenot recommended\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
778     im blogger write someth intens honest ill write one jot first laptop ive use last ive bad experi say amd high speed mani posit point trust youll regret replac twice think manufactur issu noop laptop processesor worst ill freez screen lag hang take sever minut start comput u click start menu itll take 30 sec open dont mention open 3rd parti app itll take forev freez pc restart u connect bluetooth devic readi press power button 5 minut pc hang mous cursor freez noth done accept press power button directli took help amazon technician hp technician noth could done number point mention problem unnam problem ive never come accross comput experienceif u dont truust later point get regret dont buy ryzen amd go intel cores\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
779     worst product use one da updat driver still laptop slow major thing got dot display realli major problem display qualiti bad touchpad work realli didnt expect hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
781     disappoint hp laptop hard disk got crash year laptop usag minimalthi product alreadi problem hard disk crash within year purchas disappoint told inner board laptop old board check hardwar repair person actual bought new brand devic amazon also laptop come one warranti till novemb 2019that mean date purchas novemb 2018 warranti say till septemb hp compani miss match warranti dates\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
783     registr hp site show 10 month warranti instead 1 year product alreadi regist hp websit 2 month strange\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
796     laptop moder gamer one realli step 26k product expect rog level game want killer game rig set 26k asod bespok custom pc fund thst youll abl final cash three year later want build hous minecraft terraria doth trackpad respons type absolut enjoyablewindow 10 larg calm updat featur better win7 much hate admit itoveral solid startertypist laptop splurg someth actual graphic card want gaming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
804     problem laptop term usb devic work properli batteri issu exchang laptop buy laptop payment emi still pend bought addit warranti card\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
810     worst product hang lot heat like iron box window 10 compat 1 month show boot error batteri back less 2hoursnev buy product go intel laptop store\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
821     prosnic design build qualityspeak goodbatteri goodperform need 4gb extra ramconsscreen avgsup slow need ram upto 8gbfor 22k steal\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
827     worst experi amazon use laptop time charg fulli switch hour tri turn plug charger laptop turn batteri show 10 lol tri return product dont even polici return product also seem someth broken insid product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
831     take 25 minut starttak 15 min connect datatak mani attempt open word padhow hp amazon cheet peopl knew kunni trend amazonbutnow hate hp laptop hey use simboni mobil 4mbp speed data yar neve want open again\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
838     everytim tri start show pop select boot devic fail press gone noth 1st ever laptop worst experi anyon help think return boot disk also required\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
841     worst product purchas 19 juli 2019 sinc lot hang issu n 20 daysit get start even screen get black startingu feel urself helplesscustom care respons poor recommend purchse\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
845     purchas 26k amazon summer sale 20191500 card discountnic product rangesuit daili usageif dont budget around 30k go thisbett intel i3 7th genonli bad thing displayit full hd rememb price one offer full hd display\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
847     dont buy product hang time screen goe blank mani time ive instal 3 addit app want return product nowim use product last 6 month total waste\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
849     everyth bad laptop wors laptop ive use life take 20 minut open window 10 applic start 5 minut click mous button horribl pathet never ever plan buy laptop hp big brand substandard product range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
850     display work order lap 1st time issu wd display work replac lap nd got new one 3 month back problem display work feel model worst hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
854     amazon side bad sell bad product hp laptop start give problem just15 day bad keep 2nd hand product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
856     qualiti wise finebut talk perform realli bad output givingim even use two tab one time realli leisur work total satisfi performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
857     got laptop without microsoft window 10 os instal os manual notic hp default 1 year warranti laptop expir bad service\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
860     reciev hdd problem got warranti replac hdd instal addit 4 gb crucial ddr4 ram work excel display qualiti averag batteri backup 4 hour medium demand game playabl high setgood autocad daili tasks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
862     biggest mistak chose product lenovo brand place refund request soon worst laptop ever experienc want employe usag want order 20 piec doesnt worth highli disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
864     batteri backup 3 hour instead 13hr written descript complain mani time amazon didnt exchang product valu money boot time also late dont go laptop look bodi also poor brought rs24990 \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
867     pathet product hp noth work even dustbin usabl crap laptop hp ban make sell kind laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
871     dam slow worst product amazon first time fool amazon reviews\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
877     worst product regret life wast 22k pathet slow laptop laptop slow abl return replac buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
883     want make 1star receiv laptop screen discolor manufactur defect replac amazon wait replacement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
887     comput stop work three day 3 month buy amount effort connect hp servic center get repairedif anyon read u pleas ask hp solv problem busi laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
898     worst laptop don’t buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
903     think got refurbish product cant even replac one matter mani time reset disk alway occupi 100 memori first poor experi amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
904     poor perform hang sever time new product must manufactur defect poor valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
906     lot patienc time go laptop dead slow hang 8 10 time take lot time open anyth wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
907     receiv manufactur defect wifi adapt work properli replac done replac receiv usedrefurbishedtamp laptop local pack hp box amazon packag final return product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
917     got product 6 month warranti told 1 year warrantyhang issu hp store reject accept say wrong invoice\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
919     deliveri fast first day display problem slow start laptop take minimum 5min overal bad experi dont buy laptop worst laptop basic use also\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
937     review purchas laptop regret later contact amazon return told 1012 step solut make laptop faster implement laptop becom tad bit faster return speed first gener comput worldnow frustrat use would highli recommend buy laptopi dont know amazon help inr 30000 wast utter disappoint product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
947     display poor qualitybuild qualiti poor poor plastickeyboard softperform averagea brand hp look like poorif pay 27k 29k laptop go higher rang laptop good full hd display ip bestif look normal work go lower rang less ram better display keyboard build qualitybut dont buy display jerk\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
950     didnt work like new laptop even 1 day date purchas didnt work well slow perform contact hp support mani time noth tri reset fail gone hp care thri said window corrupt u pay rs 400 cloud recoveri pay servic even warrantywtf worst experi hp face u problem 1st second day pl return wise u get irrit hp service😑\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
976     seller doest gave invoic packet im doubt authent product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
978     charger laptop work helplin provid complain well servic howev avail websit hp given response\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
982     vert worst servic hp ask replac give bad bad bad dont purchas hp purchas 2 qti pay 29000 least bother help would taken frm retailpc slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
987     light weight portabl laptopsinc ssd technolog boot system faster lag use multipl applications5 hr batteri life got multi processing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1004    hardli load anyth laptop use basic ms offic brows laptop slow month old hang disappoint product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1022    dead slow open browser willtak 1 minut open file take minute\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1025    use day problem perform fast boot lag apps\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1030    problem first amazon custom servic solv itsoo happi product now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1038    bad perform slow devic recommended\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1042    dead slow suitabl work professionals\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1043    hang problem there\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1057    qualiti laptop bad bad experi amazon pleas don’t buy laptop amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1070    system slow hang time difficult work office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1094    one word worst laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1095    perform upto mark irritating\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1098    key button respons horrible\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1108    bad option\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1118    pictur qualiti poor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1119    costly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1123    recommend look mid price rang least accept speed speed irritating\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1126    product use brows purpos open 67 tab time becom worst oper batteri remov dvd port someth happen whole motherboard need replace\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1139    speed slowbut whyveri bad leptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1140    wrost 7day creatng problem\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1143     dont bought anyon he replac refund productbatteri backup poor laptop hang issuestot money wast kindli go direct hp laptop showroom\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1144    qualiti low\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1146    start give problem within 7 dayshad replac hddi didnt pay sinc warrantyand told compon cheap qualitysort use throw laptoo\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1150    review hp 434tx i3 7th gen bought suggest never buy hp laptop hang like hell custom care support worst talk extens warranti 6000 rupe free headphon support team never visit home extend warranti didnt come get call say may come rain stupid\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1156    first time deliv laptop display defect keyboard imprint itotherwis realli like laptop wont say perfect everpros1light weight compact premium look2 amaz backlit keyboard3good 1080p display4ssdhdd8gb ram make superfast well super use store data5dec speaker becom increasingli rare findcons1 low batteri life2 get heat quicklyi purchas academ code dont regret purchas deliv faulti display one first replac get new one bad experi couldnt complet assign time didnt laptop hand\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1157    bad experi laptop twicei purchas laptop second time replac first one face issu keyboard mark insid screen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1159    don’t buy screen start flicker switch first day 130 hour usag defect laptop could check remain area screen blank\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1208    usual dont give star 4 time realli forc give ine star perform system bad even 8 gb ram 7 gen tooo slow take forev load os take year open refresh stum screen suggest buy laptop \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1212    bad experi system boot slow bigger mention perform 8 gb request replac amazon deni ask go servic centr day deliveri ask go servic centr repair\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1216    purchas item 28th januari due argent work could use within return time defect product key work slow process\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1229    worst product ever don’t purchas nt even beginn also can’t use it’ veryyyyyyi slow dnt hv exchang polici also\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1234    doesnt support 5ghz internet hp think includ 5ghz network adapter\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1241    keypad stop work 14 day purchas bad qualiti built hp worst seller servic experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1242    dont know whether someth wrong take much time power on\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1248    defect one neither amazon hp replac item even within period replac technician sent amazon hp couldnt detect problem repeat complain hp technician repair laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1253    happi allsav thousand buy macbook air realli disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1257    bought laptop 14082019now black spot appear screen within two monthsit difficult read use laptop nowit cheap qualiti laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1258    bad product yesterday got today work completli blackout\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1288    display qualiti bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1296    get defect laptop upset amazon service\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1297    complaint laptopscreen working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1307    worst work properli disappoint 😑\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1316    audio problem use headphones\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1321    bad product hp laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1337    hello guyz write review use around 15 day olso confus valu believ fulli satisfi lappi batteri life 4 hour even sound good look nd weight killer ossam product short\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1339    whether model ssd 256 1tb hard disk 8gb rampleas confirm\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1340    bad product buy note book 25062019 face mother board porblem call hp support care solv problem till date servic engin delay serviceso total lost moneydear sir friend buy items\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1342    present problem easi use work beauti look custom happi \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1346    regret buyingpleas dont wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1349    receiv warranti guaranti cardit miss box\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1377    bad product 2 week start give display problem speed super slow heat issu one cant toler speed oper anyth within 2 month repair almost 3 4 time worst part problem still solv one readi take respons pleas buy wast money wast energi call n again\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1380    worst product never buy itlook like fake product hp support extrem poor never helpse screen hardli month buy laptop throw tantrumsregret decis badly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1383    order product twice receiv faulti devic got replac order second time product stop work return date pass stuck now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1389    chose one sister first impress open box tini light weight laptop easi hold conveni carrytalk battert life decent would say would give juic around 3 4 hour normal usag exclud gamesscreen qualiti also decent immers higher end one dont expect great camera qualiti averagei would say use laptop hear issu sister till 😜i think laptop valu money laptopno emi option great bank discountsi would definit recommend one look decent look fast laptop also add ssd card fasten process boot speed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1393    dead 2 day disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1397    use laptop last 10 monthsscreen qualiti worst color calibr disturbedand poor built qualityintern lock get detach tri open lid keybord keybord cover come outregist call support 24 sept today 10 oct still complain resolv hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1402    bought offic use gener usag excel word mail even activ system dead slow switch quit often expect qualiti reput manufactur like hp disappointedaft submit respons 3rd juli singl respons hp show careless attitud defect model use alway buy hp product person use offici use attitud chang mind take hp face valu disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1403    feel sorri amazon ensur right product actual receiv might duplicateth pre instal os work properli uninstal also doesnt barcod noth els made high subspeci genuinesstrust 100 avoid buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1412    write new review 2 day use laptop heat lot doesnt cool fanstak 20 min even startdos offic insid it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1416    first laptop hardwar issu got replac new one key board spacebar workingspot screen seen one worst product hp im use hp devic sinc 2009 never kind experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1418    31k drain bloddi 1 month old laptop lag much even lag basic brows let alon heavi usag restart pc take around 20 minut one request everi one pleas dont buy product \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1421    expect hp window dead slow deaddont buy load start laptop take 20min allif open one tap browser system hang respond longer timewast money wast time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1425    slow get hang everi 10 min worst product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1431    purchas product 5 month back alreadi replac due poor perform even replac product abl open powerpointy dont believ i3 total useless tri contact hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1435    switch take 10 min boot open applic take 15 min open upiam fed slow ness laptoppl prefer dell time hp customar care given laptop existit horrible\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1436    adapt laptop poor qualiti 10day purchas start show problem charg even unabl charg batteryi know whether problem batteri adapt simpl wastag money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1443    dont buy product worth spend buy sturdi product major softwar issues\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1446    poor product worst ever seen slow share wastag money even sale servic poor realli genuin review\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1454    key pad work 1month use window softwar problem write review use 10monthsit might use one sure genuine\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1455    laptop take forev start applic hang without work purchas laptop day deliveri complaint amazon forc keep laptop sinc custom servic depart told noth done\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1457    worst laptop switch laptop fan run stop hang problem log take time speed good total wastag money laptop u buy laptop recommend pleas buy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1458    product per requir standard feel cheatedit take lot time boot shutdown restart take long time laptop configur high speed realli disappoint onlin laptop purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1461    worst product cheat work 12 day afterward got repair frequent money went wast pleas dont buy get cheated\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1465    system slow also offic 365 work wherea product purchas licenc versionit difficult reach custom supportrequest contact discuss\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1467    avoid window 10 laptop slow oper system laptop 40k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1470    product like light wait smaller size besid work problem experienc low batteri life heat gener work make uncomfort hold lap\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1473    worst product till date slow hang open websit complet disappoint hp somewhat amazon keep product inventory\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1475    bad performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1481    highli disappoint sometim doesnt start screen get blue red seem like duplic fake productim think fill suit seller\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1482    get messag niw window go expir wth paid wnd mention window 10 lifetime\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1485    steal deal 5k cheaper model price hp world store rest everi thing mention configurations\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1490    dont buy slow processstart mai hi blank dikhata hai purchas one week iska natk chalu eda bana ka dhanda hai bad bad bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1492    slowunhappi regret buying\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1495    use two month write review work slow time take 30 minut startnot support latest technolog softwar custom servic worst\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1498    valu money bought steal price \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1499    face much perform issu take alot time reboot didnt tri open excel file doc usual perform seem like disaster\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1501    bad slow pc even abl download hp support assiat screen becom black everi boot never recommend anybodi dont buy crap\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1502    1process time long2frequ hangs3camera hd web cam imag poor ever seen4ev start ever not\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1503    slow perform someth would never expect brand like hp far happi product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1505    bad slow keep hang option exchang return\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1514    miss backlit keyboard full hd display mous button littl hard\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1515    poor respons machinehard disk gone year time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1516    vear poor batteri life screen quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1518    worst laptop i’v ever use last 20yrs\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1522    worst laptop ive ever usedit slower tortoisealso issu shut process\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1530    pleas don’t buy comput load comput latest version window appar comput hang thisam total disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1531    within week use laptop crash suddenli shut sinc it’ outsid return window can’t return realli disappoint it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1541    bad performancehang almost time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1547    good product afford pricesometh bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1548    one worst laptop ever buy perform vri slow dont wasy ur moneyi wish could return back\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1552    laptop good everi angl price reason howev bad experi amazon laptop warranti start 6 month prior purchas date wrote amazon 9 time everi time answer amazon gave promis sort mention problem genuin 15 day 1st mail form committe sort problem 1 month amazon committe pass resolut contact hp compani warranti noth problem wrote purchas laptop amazon amazon correspond hp amazon agre ultim start correspond hp hp practic resolv problem singl mail\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1553    laptop full seri problem creat new folder system hang return laptop twice still problem availableso final return decid buy differ lappi speed par specif boot time more\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1554    pretti pathet piec hardwar ever used1 poor perform even 8gb ram laptop take age login display desktop often simpl program like chrome becom unrespons one restart program2 keyboard mous pad placement ergonom uncomfort use key hard press intuit due placement3 backlit keyboard standard laptop price range4 mcafe viru expir within day even say 3 month free5 purchas addit warranti hp refus without reason\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1557    check hp support assist show 7 month warranti remainingthi bad impact me\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1559    bad producr 😠😠😠😠😠😠😠😠😠😠😠pleas dont buy guys\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1561    screen display work defect piec deliv inform custom care sad experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1568    purchas bad product 23 septemb 2019 spent hard case earn money affar 40 day laptop work number time contact servic center repli want replac final lost 41990 hard earn money laptop keyboard mouns pad noth work allpleas buy thisthanks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1575    wifi speed limit mention user somehow fail notic suspect amazon hide make purchaseha ms offic trial version onlykeep hang second day unpacky delet itemcopi wont show until hit refreshusb port audio jack tight like one duplic productstouchpad click tight provid good exercis fingerssometim keep click wont anythingsound qualiti gooddisplay sosoaesthet disappointing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1579    worst product slow start password recoveri also challeng job worst experi product need immedi replacement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1583    good product hp howev boot time significantli gone window 10 upgrad 1903 ran hp util check issu howev discov anyth wrong lenovo configur observ lenovo much faster hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1590    slow even work fast one browser even one excel open screen display restart manual power button everi 1 hr worst productdont buy cheaters\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1595    advis amazon 1 year manufactur warranti check hp site product alreadi activ 5 month warranti left 7 month warranti loss taker warranti start date invoic purchas consum retail case\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1603    satisfiedit get press power button also sometim connect charger sometim cross sign show batteri boxal happen frequentlyservic center way commun also poor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1623    poor experi dispali damag pleas replace\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1625    lot issu face buy amazon problem hp buy amazon invit troubl start activ microsoft … warranti issu recommending\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1626    open close lid bottom screen display distort bottom section\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1632    problem usb port \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1644    laptop valu buy take huge time boot rather annoying\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1645    hide fact display led disappointed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1646    worst product one month start hang slow done buy laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1648    total fake productdont wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1651    batteri goodeven bad 👎👎👎\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1653    laptop good work soomthli till date deliveri done regist addressdeliveri experi bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1654    sell old slow laptop realli upset kinda deliveri amazon qualiti laptop especi hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1660    dvd writer defect 2 week old laptop writer found defect first use only\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1677    batteri worst perform average\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1680    sinc new problem yet\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1684    worst experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1693    good bad perform slow response\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1703    incomplet softwar duplic model disturbing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1705    weak hard disk big problem boot loader available\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1706    anti glare\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1729    littl bit slow batteri life also low\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1731    alway need video shoot open packag productshp laptop packag charger receivedzero valu pay full money laptop packag charg check batteri life complet laptop weight miss sad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1734    3rd grade laptop cannot open ms excel take time slow oper laptop remind 2002 use studi school pc 2nd standard classs mayb slower school pc\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1735    complet 30daysnot much rough use product get bad productveri bad product bad servicei strongli recommend one buy this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1741    secreen qualiti bad bey bad exprinc amazon custom care support \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1743    pathet perform can’t multitask amd processor worst wast money amazon support worst\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1746    noth per descript promis pathet ask replac almost month updat call fool custom around take money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1748    batteri last 15 hr hp make fals complaint last 6 7 hrsi feel total trap buy laptopamazon say assist bodi helpingme\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1759    slowli oper batteri backup 1hr preinstal msg offic get open bad experi lap\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1761    bad product deliv amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1763    product usb port damag poor person weep see pl tell solution\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1765    worst perform take long time power frequent struck wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1771    worst laptop chang exchange\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1775    that problem replac product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1778    worst product bought amzon till date\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1782    product poor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1786    worst product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1789    charger broken\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1793    poor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1794    fake\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1800    system slow difficult use it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1811    pleas dont buy product receiv faulti product turn charg 3 hr still work inform amazon call centr regard problem readi give replac also\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1815    worst brows u want purchas go mobil mean mobil better chromebook\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1831    guysdo buy crap thing laptop give troubl sinc day 1\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1833    date bought run slow take half hour start custom care worst\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1838    hp laptop work smother\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1844    pathet producthard drive crash within 7 months\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1854    disappoint purchas specif finger print scanner per product descript contain 256gb ssd 1tb hdd 256gb ssd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1860    laptop warranti 2 month remain amazon cheat us do\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1865    laptop receiv today power start button work contact hp custom care basic dead laptop receiv \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1868    worst product lifeworst servic bangalor warrantyaft 2 month laptop keyboard work till wait hp servic repair even 1 half month alreadi report them\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1873    product screen damaged\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1882    brought amazon relianc digit nevertheless still would like share experi horrible1 one month purchas keyboard stop working2 took servic centr dehradun fix problem3 bare month problem reappear 4 also dead slow even phone s7 work way faster laptop cannot handl tab timepleas avoid it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1887    bought product hurri diwali time regret almost daili critic issu face ever sinc bought laptop1 extrem slow load take hell lot time2 though manual updat enabl system goe auto window updat everi 2 day time updat run 67 hour mean never get time use laptop3 matter mani time run shut command laptop continu unless physic shut down4 cant even open 4 window tab simultan crashes5 overal nice look fanci gadget without practic utilitiesextrem disappoint hope get replaced\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1889    bought less 10 day ago got faulti product slow hang alway overh 5 min disappoint hp amazon need replacement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1890    use laptop last 3 month issu seem never end look good feel good end matter alreadi face issu audio compani claim softwar updat issu heat sink stop work 15 day sinc complaint rais yet replac part sure yet manufactur pathet sale servic laptop slower p1 system would never recommend product anyon updat review part replac see improv performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1894    serial invoic differ serial print machin machin pack box hp unwil undertak return exchang product sever fault admit write go replac due fraudul invoic cannot ram 2666 hz insid machin wherea websit specifi 2400 cant upgrad ram speaker faulti hp admit fault given doa exchang approv without invoic proper serial cannot dealer definit thu plan fraud cleverli polic complaint solut left sinc amazon helplin robot speak product cannot return amazon\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1911    lot glitch screen freez lot stop sens touch matter much tri demand restart wast money realli pathet batteri perform goe 30 21 within 10 minutes\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1912    slow laptop test patienc ive alreadi lost patienc time take load run sort covert oper backend time consum entir 4gb ramkeyboard stop function smoothli requir one key multipl timesf look serv practic use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1916    worst product ever usedit 16 day sinc bought 3 time technician come done troubleshoot yet even today face problem even singl file pdf word excel etc app open less 34 min ask refund sinc amazon doesnt deal refund im held badli assur replac new one without issues\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1919    receiv defect piec time complaint rais resolv onlin return period expir take servic centr problem screen touchscreen didn’t work issu resolv altogeth bad experi learnt valuabl lesson buy costli product onlin may hand defect piece\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1921    high price sshd thought ssd alon heat 10 minut use fan sound becom heavi tri work mechan cad design softwar perform poor system way slow may issu 100 disk usag hp window 10 deadli combin dont want buy advantag portabilityupd six month use keyboard back light went use never turn qualiti poor also bought jan 2019 warranti shown august 2018 guess seller appario ltd sold poor qualiti laptop return someon renew product initi suspici low qualiti packag compani cover product suggest buy kind costli electron onlin fraud easili never know whether new renewed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1926    hi ive order laptop appreci time deliveri product 2 month sinc got laptop sometim hang past week show blue screen error frequenc higher im realli disappoint would like return replac laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1930    poor product hang often even work light applic system hang cant use heavi app heat fast recommend wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1931    pleas dont buy one worst laptop ever seenand dont call hp support put hold 21 minut anddisconnect call still follow hp support hardwar chang network cardand want chang network wire wast time money btw call support alreadi reinstallationand hardwar support want that\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1937    worst product ever made hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1940    it’ genuin advic guysi deceiv laptop look total unworthi purchas laptop total useless hardwar issu pl refrain buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1943    realli disappoint third month use crash hang time sometim k letter appear screen without knowledg type word use search engin time mous control pad keyboard doesnt respond\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1951    batteri exhaust quickli near hp claim time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1952    1 heavy2 ram low 4gb make slow upgrad 8 gb3 warranti onlin registration4 button goodoveral satisfi purchase\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1955    poor qualiti unexpectedli slow curs buy garbag half lakh rupees\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1956    hard disk crash month use bare hour dayil visit servic centr soon let seeill updat more\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1963    laptop perform dead slow even open excel sheet take 5 minut 4gb ram window 10 compatible\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1970    super slow 12 year old laptop boot faster huge disappoint hp amazon return v pain v v bad experience\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1972    worst perform rhe laptop request return first day take 5 6 second open even googl chrome dont buy guys\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1973    holi crap wastag money dead slow slower snail sloth\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1982    processor bit slow sometim multitask perform poor get struck often better buy laptop high processor look forward use work\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1983    use laptop type keyboard pathet abl type press hard h day day keyboard get worse\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1985    hard disk fail within one year mild usagelaptop keep shut itselfveri bad experi hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1987    piec crap 3 day alreadi malfunctioningi dont recommend buy go wast money frankli wast time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2014    horribl product extrem slow probabl enough ram touch also goodhug disappoint absolut wast money buy 45k drain\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2015    quit get stuck middl even small work also app get close dng thing dont recommend \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2022    laptop becom realli slow within 7 month purchas wouldnt recommend go better processor ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2023    bad brand product better opt buy brand get right item ur hard earn money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2024    system hang frequentlyth worst system ever purchas hp asham subservi product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2045    bad sound got 2week problem sound slow operations\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2066    worst productworst servic amazonhighli disappointing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2070    sound problem sinc beginninghang problem last 10 days\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2106    fake never trust onlin productswithin one year two time key board complaintnd made plastic materi metalso got open nd close problem thisatleast good 1 year alsoi purchas novemb 2018 got mani problem lapyso valu money never trust againeven cost product offlin showroom alsoo friend ur near showroomsnev trust it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2108    write review base bitter experi poor hardwar qualitywithin 6 month purchas laptop hing joint joint keypad screen broken normal close laptop reason one hing joint abl close one work properli mani part laptop demag like keypad joint frame screen top framewith brand hp expect good quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2111    good price build qualiti poor game like fifa 17 run medium graphicsne licens window instal bit difficult\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2115    bought onlin except offline\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2118    sound low tube onlin stream vedio amazon prime netflix zee5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2122    outstand performanceeveryth work nic✔✔✔✔i use last 5 monthsno problem yet👌👌👍veri happi it😀😀😁😁\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2131    osm laptop realli first laptop cant expect realli best laptop anyth like game other\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2135    sound low\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2137    worth product display bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2158    batteri backup lowest\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2164    bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2167    duplic product dont want laptop amd graphic insid lap topproduct qualiti poor top laptop cover soft lean\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2170    manufactur defect\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2177    worst product wast money dont go hp laptop dell better hp even lenovo also better worst hp laptop servic centers\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2179    product doesnt support wireless network driver linux keep mind buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2181    it’ damn slow 5 month take 3 minut boot feel like throw trash damn slowwww 2ghz process frequenc choos i3 choos processor frequenc rang 25 3 ghz\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2188    sad buy item pc simpli damag deliveri time sound average\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2189    nice heat problem sound problem instal driversbut buy onlin extend warranty\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2190    slow problem return\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2196    worst product sent repair twice within last one year slow wont recommend\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2205    disappoint startingjust show c\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2206    decent high price tag would expect level perform hp laptopsbut utterli disappoint producti bought amazon dealer near within one year purchas broke 3 time wors blacksout without respond input method worst experi hp product far pleas dont buy one\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2208    buy found perform bad upgrad ram instal ssd support hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2210    batteri backup isnt good\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2214    seller rentopcdotcom offer poor qualiti refurbish item purchas laptop hp elitebook 840g1 laptop spuriou part ask dont respond ram unbrand incorrect frequenc use 1033 mhz instead 1600 model charger spuriou also issu provid correct voltag screen dead pixel still call certifi refurbish save grace appear bad henc pleas dont order high ram hard disk ssd config guy spuriou anyway pleas expect spend money hard disk ssd ram charger batteri spuriou sold 20k level becom bargain easili chang ram hdd take user remov cover\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2215    laptop perfectli work second batteri miss pl arran send priority\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2216    realli bad worst within 3 month mani problem occur still stuck\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2218    renew laptop deliv poor condit scratch even small crack top lid okay renew one start use realis batteri laptop wasnt good condit use plug turn instantli disconnect plug\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2221    lap top good use 4gb redeon graphic nvidia graphic dont go amd radeon 2gb graphic realli wast otherwis u go integr graphic intel uhd 520 one thing ever mention 2gb graphic wrong mention 530 tesdeon 320 readon realli cheat customer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2225    dont buy product hp worst sale servic laptop made low qualiti materi never repair product warranti 8 month use experi laptop get heat low batteri backup 2 3 hr power backup screen resolut upto mark\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2236    dont buy hp product plastic hingesi bought laptop chang broken hing three time within one year rough use product normal use disappoint hp product make laptop lighter gone less durabl part make delic dont buy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2237    got laptop 45k includ bag accessori offlin store come laptop use sinc 4 month problem laptopi would recommend laptop budget less 47k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2241    dedic gpu poor integr gpu dolbi digit sound system\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2246    worst product never buy laptop amazon laptop sound work slow look fool want return laptop sure return complain this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2254    laptop lag problemmi fault purchas wast 22000 rupeesit 20day buy much lag nowi irrit laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2262    unabl use microsoft featur option work show messag buyer purchas alreadi told u instal os relat drive kindli attend given concern no\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2270    lag lot built qualiti wrost pleas dont purchas laptop go intel hp brand\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2271    laptop work onlin googl youtub come display pc problem power pleas return laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2291    poor qualiti charger fail work within 2 months\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2299    worst product get hot quickly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2306    bad\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2314    bad prodect\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2316    bad product wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2318    dont like product good checkout problem\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2319    purchas laptop 10 day instal window 10 laptop perform pathet slowtak 5 min restart would suggest purchas one even low budget \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2321    part miss driver cd ni mili na hi window installed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2324    amazon amaz featur lowest price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2329    problem instal laptop driver work properli 🙁 couldnt use usb 30 port beginning\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2332    worst lap dont buy anyon \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2339    laptop work properlysom thing wrong system\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2341    slow processor contain lot lag functioning\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2343    crap didnt like product beat product servicepric need get everyth outsid ex window installedatleast peopl provid cd goodi bag see provid everyth less amount compar onlinei would suggest everyon pleas compar buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2346    bought laptop last fridayit realli badwhil use laptopit suddenli stop restartingit struck more\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2350    warranti paper user manual miss box contain import papers\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2351    laptop total water money dont buy keep restart everi two minut even chang os mani time problem happens\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2352    purchas laptop 2019 compar 10 year old hp laptop sound camera qualiti poor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2356    dont take one please\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2363    product came viru time life tri use horrid machin buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2366    four month use it’ lag badly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2369    cant even use play cd games\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2375    1 wibdow 10 version preload custom auto updat consum everyday net pack 15 gb allow person work2 abl creat disk partit need3 antiviru anti malwar anti adwar pack found trial version expired\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2384    bad batteri backup dell i7 good prices\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2386    disappoint paper spec look impress real time perform v slow v v disappoint sure problem unit model like this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2387    within 20 day purchas experi electr shock connect laptop power supply\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2388    pathet product switch first time box gave system fan 90b error messag i’m sort amazon go tediou process regret purchas hp use amazon buy useless product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2390    sound system work one supportingworst experi face purchas amazon dont get support\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
Name: clean_text, dtype: object
In [25]:
Neutral_reviews=df['clean_text'][df['rating']=='Neutral']
In [26]:
Neutral_reviews
Out[26]:
0       sound laptop even instal necessari drivespleas suggest solut otherwis return item\n                                                                                                                                                                                                                                                                                                                                                                                                                                      
9       kindli updat product origin hpfind photo confirm samei use current i5 i3 one look different\n                                                                                                                                                                                                                                                                                                                                                                                                                            
20      valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
22      awesom look laptopi dont know much neg reviews\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
38      avoid buy laptop look like someon put duplic processor ram insid pain slow consid throw away buy better laptop market\n                                                                                                                                                                                                                                                                                                                                                                                                  
49      one non perform laptop everi applic hang properli shut downmicrosoft offic quit slow sometim start properli start 10 min ask amazon return iti wish purchas amazonthi worst experi amazon take back laptop return refund money\n                                                                                                                                                                                                                                                                                         
50      slow laptop slower 6 year i3 laptop purchas almost price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                               
59      per specif laptop receiv lifetim warranti ms offic got warranti 1 week even rais queri still replied\n                                                                                                                                                                                                                                                                                                                                                                                                                   
65      screen border black rest part silveru cant work dark area coz light keybord keys\n                                                                                                                                                                                                                                                                                                                                                                                                                                       
79      slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
101     processor slow also often hangand also one keypad key damag dont buy laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                            
103     absolut patheticamazon give support casenor even contact detail hpmi laptop becom useless less 10 thosepathetic\n                                                                                                                                                                                                                                                                                                                                                                                                        
104     extrem slow take 5 minut boot 2 minut switch windows\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
113     month use laptop happi perform everi way perfectli everyth described\n                                                                                                                                                                                                                                                                                                                                                                                                                                                   
126     slow work stuf ms officetak mani time starting\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
128     bought laptop open ms offic say buy ms offic purchas life time window 10\n                                                                                                                                                                                                                                                                                                                                                                                                                                               
130     respons time slow batteri drain fast\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
132     work properli take 5 minut start n dont buy dis\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
136     system slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
139     bought 28500 valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
141     slow cant work it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
147     slow laptop \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
154     veryyi slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
161     bougt product last month found one led screen work misplac bill henc could replac product\n                                                                                                                                                                                                                                                                                                                                                                                                                              
162     extrem slow think ram upgrade\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
165     recent purchas item feel happi perform build quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
166     graphic suitabl gamingto slow startaft one face black screen problemalso suddenli shut downwarranti shown hp website\n                                                                                                                                                                                                                                                                                                                                                                                                   
171     write review use batteri life 34 hour pictur qualiti averag process speed also average\n                                                                                                                                                                                                                                                                                                                                                                                                                                 
183     slowli start take 15 mins\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
188     bug window 10 laptop doesnt sleep hibern batteri keep discharging\n                                                                                                                                                                                                                                                                                                                                                                                                                                                      
191     slow processing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
192     slow laptop bought bcoz i3 procbut pc pentium core faster thisi could due set someth fact is\n                                                                                                                                                                                                                                                                                                                                                                                                                           
193     goodproduct\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
200     4 month usag write review1got 19k2awesom batteri life3worth price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                      
223     laptop doesnt work switch cant work anymore\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
226     cant handl multipl applications\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
238     fast lightweight easi use appropri ram screen storag space suitabl student work profession look lightweight perform laptop\n                                                                                                                                                                                                                                                                                                                                                                                             
240     amaz product use last month everi daylong hoursit wonder one product within budget\n                                                                                                                                                                                                                                                                                                                                                                                                                                     
242     iam happi product match requirement\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
245     nice one pricelook awesom display seem littl weak that big issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                       
250     gud\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
253     horribl product one go less 3 day use doesnt work continu 15min\n                                                                                                                                                                                                                                                                                                                                                                                                                                                        
254     abl angular 8 setup code smoothli \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
257     dvd writer laptop purchas last week\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
266     im fulli satisfi product look amazing💕😍\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
279     per specif product nice complaints\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
280     third qualiti laptop window bhi alag se upgrad karana padta hai\n                                                                                                                                                                                                                                                                                                                                                                                                                                                        
282     batteri come lock fuxntion batteri working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
284     valu money \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
286     im satisfi productgood far\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
289     verygoood\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
301     wonder product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
302     build quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
305     satisfi product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
306     sasta sundar\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
315     whatev promis get delivered\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
319     batteri bacup gud\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
323     laptop sahi nhi h\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
324     valu money uniqu category\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
334     bakwas\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
335     didnt receiv bill laptop warranti card anything\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
341     window activated\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
344     thenks\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
346     valu money realli awesom \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
347     niceth processor fastworth buying\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
348     vgood\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
376     satisfi price paid\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
380     2 port workingspe also upto mark\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
384     cheapli build plastic brittl lag like grandmoth take forev open windows\n                                                                                                                                                                                                                                                                                                                                                                                                                                                
388     unworthi product dont go thisdont buy one\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
391     awesom product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
393     use laptop 2 year extrem heavi batteri life repair mani time honestli dont buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                      
397     keyboard working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
442     valu money laptop new pentium gold processor ssd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
450     laptop slow two month use laptop slow slow sinc day got delivered\n                                                                                                                                                                                                                                                                                                                                                                                                                                                      
466     decent product gener purpos though ssd quick respons evid apart game heavi graphic work serv pretti much everyth else\n                                                                                                                                                                                                                                                                                                                                                                                                  
467     extrem fast boot time gone set process\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
475     plzz believ genuin buyer laptop must buy bcoz follow reason speed 7 sec bootup n 2 sec shut n mani more\n                                                                                                                                                                                                                                                                                                                                                                                                                
477     see posit sinc alway ask backlit keyboard😬\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
482     amaz laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
497     work wellth screen keep shut randomlytak forev turn switch off\n                                                                                                                                                                                                                                                                                                                                                                                                                                                         
499     price goodssd amaz fast\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
503     fast smooth day day task\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
507     reason product suitabl homeusers\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
508     less storage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
512     amaz laptop hpit power 256 gb ssdboot 8 secblindli go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                               
513     display averag laptopcas averag quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
519     wast laptop foreverperform slowhang problemautomat poweroff\n                                                                                                                                                                                                                                                                                                                                                                                                                                                            
520     awesom ditto specified\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
525     ms offic 365 uninstal download googl chrome normal version\n                                                                                                                                                                                                                                                                                                                                                                                                                                                             
526     average\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
527     problemat 2 3 week use screen show vertic line\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
528     light weight valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
536     it’ averag laptop averag price averag use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
537     screen quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
540     initi rate review detail later\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
543     use laptop students\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
547     product basic use only\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
548     mindblow purchas 👌👌\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
549     nyc\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
556     size issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
565     amaz product rs 30000\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
569     run smooth\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
571     valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
575     slow start\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
583     ms offic work ask product key activ although model come preloadedoffic 10 pl provid product key outlook work pop messag activate\n                                                                                                                                                                                                                                                                                                                                                                                       
597     purchas laptop 30 may mention avail microsoft home outlook show unlicenc mean unabl work outlook everytim open oultook ask confirm mail id start process sign in\n                                                                                                                                                                                                                                                                                                                                                       
600     first touchscreen laptop ive handl appl product touchscreen obvious doesnt add pretti satisfi look function batteri doesnt last long though\n                                                                                                                                                                                                                                                                                                                                                                            
603     brought primeday offer replac old laptop got low price never expect worth price mention fingerprint scanner im abl find anywher laptop hp increas ram capac hdd capac helpful\n                                                                                                                                                                                                                                                                                                                                          
606     would bought 42490 bought 44490 say lightn deal rubbish\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                
616     product receiv damag condition\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
617     receiv damag product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
623     lawyer usag read research draft realli happi way laptop turn first month usage\n                                                                                                                                                                                                                                                                                                                                                                                                                                         
627     amaz product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
628     dont buy product x360 last 2 month motherboard avail refus change\n                                                                                                                                                                                                                                                                                                                                                                                                                                                      
630     product differ imag model product match finger print sensor model\n                                                                                                                                                                                                                                                                                                                                                                                                                                                      
648     price give features\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
656     work properli take much time open pc file\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
676     use price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
677     drawback display\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
679     valu maney\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
687     awesom laptop \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
698     awesom lapi light weight decent look\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
701     abl open laptoit ask passwordi new laptopi bought 44000you deliv laptop use one 1 weekand lock passwordhow u way\n                                                                                                                                                                                                                                                                                                                                                                                                       
709     system hang ms offic trial version\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
720     display qualiti goodbut slow processing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
762     much slow cant even open googl chrome time unabl updat window laptopeven replac work properli dont wast money go asu lenovo instead hp\n                                                                                                                                                                                                                                                                                                                                                                                 
825     buy laptopperform slownot built gamingprocesses speed lowit cannot handl gta vice cityworst product\n                                                                                                                                                                                                                                                                                                                                                                                                                    
840     especi boot window almost 2 minuteswait logon screen appear 2 minaft login wait icon wifi connect anoth 2 minutesopen browser 30 seconds\n                                                                                                                                                                                                                                                                                                                                                                               
843     laptop fine boot issu probabl hddalso hdd poor qualiti buy ssd along laptop wont regret it\n                                                                                                                                                                                                                                                                                                                                                                                                                             
872     laptop oper vari slow replac optionsfak inform written description\n                                                                                                                                                                                                                                                                                                                                                                                                                                                     
876     price decent laptop ram need upgrad minimum 8 gb otherwis laptop slowupgrad use crucial 4 gb ddr4 ram perform bettersuit everyday laptop\n                                                                                                                                                                                                                                                                                                                                                                               
881     3 hr batteri lifeslow process speed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
882     get around 2025 hour batteri life window updat dont get instal first tri web brows fast applic slow\n                                                                                                                                                                                                                                                                                                                                                                                                                    
885     look delic laptop open laptop found wifi connect issu post network reset even driversnot get updat pl think twice purchase\n                                                                                                                                                                                                                                                                                                                                                                                             
889     slow offen hangingi din get user manual guide\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
894     product work properlyjust 5 minut bottom hothi oper system slowli alway hangno singl photo data store product third class product\n                                                                                                                                                                                                                                                                                                                                                                                      
897     laptop goodslow speedalso work professionalit gamesi wast moneyu wastewhen pay 28kwe expect morebut 😔\n                                                                                                                                                                                                                                                                                                                                                                                                                  
900     bakwaa hai ji\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
901     laptop slow ishtar amd rayzen3 boot slowly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
905     usel product hang lot\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
912     slow processor hang continu work dont buy price less intel processor 23k purchas intel type life time headack you\n                                                                                                                                                                                                                                                                                                                                                                                                      
916     amaz deal purchas 22500batteri backup 45 hoursdisplay goodperform smoothin build window 10light weight\n                                                                                                                                                                                                                                                                                                                                                                                                                 
921     total satisfi purchas issu built qualiti it’ serv purpose\n                                                                                                                                                                                                                                                                                                                                                                                                                                                              
926     fast performancewosrt display\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
927     dont buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
940     first 20 day mous work open laptop got fix easili what point also beleiv hp qualiti gone laptop screen open much till 90 degre also origin pro e shown high make feel give high discount actual price happi quality\n                                                                                                                                                                                                                                                                                                    
941     buy hp product servic wast replac faulti part alreadi 20 day without updat experi buy experi also\n                                                                                                                                                                                                                                                                                                                                                                                                                      
959     product ie i3 laptop two number got work properli speed also poor secur window open curser visibl window screen open wish return products\n                                                                                                                                                                                                                                                                                                                                                                              
971     go ms offic lifetim avail without chargeswindow 10 orgin ie full securityport light weight averag screen quality😉\n                                                                                                                                                                                                                                                                                                                                                                                                      
986     light weight laptop routin use came load window 10 ms office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                           
996     batteri goodsystem hang mani times\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1003    screen qualiti let otherwis laptop fast respons happi purchas app run smoothli without much hiccups\n                                                                                                                                                                                                                                                                                                                                                                                                                    
1015    machin suppos come licens microsoft offic 2019 student got expir version offic 365 ask offic product key\n                                                                                                                                                                                                                                                                                                                                                                                                               
1017    initi reviewworth everi everi penni light weight\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1020    laptop awesom category\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1026    screen qualiti expectedbatteri 4 hr onlylight weight easi handleperfect traveling\n                                                                                                                                                                                                                                                                                                                                                                                                                                      
1033    thoda chota h theek h\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1036    say includ ms offic system ask activ code get ms offic activation\n                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1044    light weight office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1046    pleac place laptop 6 8 ram new vertion slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1066    slow respond\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1069    valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1076    seller didnt give invoic owner manual laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1082    awesom product may tri it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1085    resus product dilev screen also working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1088    lot hardwar issu product use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1089    touchpad slow even sometim responding\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1090    regular offic work worthi this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1091    quit slow performance\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1092    machin slow expectation\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1096    hang internet use boot slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1097    slowest laptop human ever seen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1099    alway hangs\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1102    work slowhang fast\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1103    must cd drive\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1104    system seem littl bit slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1105    exclinent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1107    amaz 👍\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1109    warranti document received\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1113    thirdclass quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1115    lightest laptop ever hp\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1130    work slow apart issu laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1134    satisfi product invoic bill waranti card\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1136    awesom product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1142    mous along laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1147    laptop nice problem charg earth coming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1151    bluetooth devic cant receiv nothing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1154    prosboot time realli fastconsther heat issu laptop hear fast\n                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1168    laptop found light work expect big batteri life give 3 hour laptop heat issu also\n                                                                                                                                                                                                                                                                                                                                                                                                                                      
1176    bought week back can’t comment\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1179    addict game light handi offic purpos work due ssd fast booting\n                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1184    laptop receiv without preni talk offic home student edit 2019\n                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1193    mark specified\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1199    descript say includ offic home student cannot activ tri log microsoft account still show activ required\n                                                                                                                                                                                                                                                                                                                                                                                                                
1201    product avail 50500 hp store\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1202    awsmmmm\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1203    light weight stylised\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1206    speed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1220    ms offic preinstal amazom show preinstalled\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1236    happi product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1252    slow heavy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1259    stun laptop boot asap speak louder hd video stay long time\n                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1263    brought laptop week befor get black daily\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1264    happi lappyslow manner\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1265    camera qualitysound qualiti nd processor qualiti lowoveral gud\n                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1272    microsoft offic trial version instal abl microsoft office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1273    averag product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1274     laptop bag product also extra accessori also\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1275    person use daughter colleg use\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1282    old gener old processor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1293    watch 1 hour eye start burning\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1301    descent purchas price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1303    slow process dont buy hp laptops\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1309    laptop slow dont buy product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1310    beauti look\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1327    slow processing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1331    🔊sound qualiti optimum\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1335    slow \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1350    slow suggest tutti anyone\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1354    need proper bill\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1358    got ms offic 1 monthpleas read detail configur carefullyok\n                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1381    light weight definit plushowev perform slow put extra 4 gb ram 250 gb ssd make bearable\n                                                                                                                                                                                                                                                                                                                                                                                                                                
1385    low qualiti assembl 3 month ot start malfunct complet wipe reinstal complet os still good condit slow avoid buy low ram mostli compat window 10 would recommend buy product unless student\n                                                                                                                                                                                                                                                                                                                             
1390    laptop receiv faulti follow like crazy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1392    slim light look profession littl bit slow process averag camera nice sound qualityveri slow poor process plz dont buy it\n                                                                                                                                                                                                                                                                                                                                                                                               
1399    rememb ms offic preinstalledupgrad ram 8gb still lagardsuggest go i5 plan use offici work\n                                                                                                                                                                                                                                                                                                                                                                                                                              
1401    product rate 35ok write review use product monthther lot review product web even amazon high possibl creat lot confusionnot point ok buy product without second thought1 win 10 64 bit 4 gb ram i3 7th gener togeth wont provid great perform brand2 still get decent perform brows use softwar even play mid rang games3if go upgrad ram thing work pretti well4 hp come lot preload softwar creat lag initi experi around 15 min use laptop everyth work fine5 pretti light weight well built enabl carri around ease\n
1451    slow machin despit noth window 10 ms offic instal older laptop 2 gb ram whole lot softwar way faster conk within year im replac now\n                                                                                                                                                                                                                                                                                                                                                                                    
1468    hii use model bought april program slow laptop add 256 gb ssd make faster pleas advisethanksshweta\n                                                                                                                                                                                                                                                                                                                                                                                                                     
1471    handi dail usag laptop perform decent\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1484    goodlight weight\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1491    work properli start oper system loading\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1497    medium speed buy rs 22000 one year slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1504    bought price 31k doesnt worth price better wait discount around 25k good\n                                                                                                                                                                                                                                                                                                                                                                                                                                               
1506    valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1508    take lot time turn onit process speed slow turn everi time appear line screen\n                                                                                                                                                                                                                                                                                                                                                                                                                                          
1512    product warranti start date purchas warranti laptop receiv start 2 month earlierreplac laptop issue\n                                                                                                                                                                                                                                                                                                                                                                                                                    
1520    donot know slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1521    window softwar got corrupt month chase hp servic center big project itself\n                                                                                                                                                                                                                                                                                                                                                                                                                                             
1524    slugish laptop window 10 compat 4 gb rambett buy 8 gb ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1526    lightweight stylish laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1529    im happi product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1532    beteer\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1535    i3 process even slowmi work relat web onlyit take minut load simpl web window\n                                                                                                                                                                                                                                                                                                                                                                                                                                          
1536    basic featur laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1542    speed averag touch pad sensitive\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1544    processor slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1596    ms offic 365 instal trial version got expir within 15 day laptop deliveryal buyer consid extra budget buy genuin offic antiviru within approx 1 month receiv laptop\n                                                                                                                                                                                                                                                                                                                                                    
1602    receiv damag key board \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1612    unbeliev price\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1622    product key ms office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1627    warranti card present insid box\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1628    go volleg student\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1629    laptop work sinc day arriv horribl experi never reccomend anyone\n                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1631    purchas laptop yesterday think realli goodi didnt laptop earlier cant compar someon suggest activ ms office\n                                                                                                                                                                                                                                                                                                                                                                                                            
1633    batteri work properly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1635    last 2 month use laptop issu work properli batteri backup qualityi suggest purchas u budget around 40k\n                                                                                                                                                                                                                                                                                                                                                                                                                 
1636    littl slow system\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1637    valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1640    order 8th gener receiv part 7th generationin detail show 7th gener headlin show 8th generation\n                                                                                                                                                                                                                                                                                                                                                                                                                         
1642    complet wast product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1647    hi venkat laptop ms offic 2016 activ abl access offic relat file pleas need request\n                                                                                                                                                                                                                                                                                                                                                                                                                                    
1655    laptop littl bit slow 7th gen 3 mb cach integr graphicswork need done specifications\n                                                                                                                                                                                                                                                                                                                                                                                                                                   
1657    price compar high\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1659    light weight\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1661    valu money use look multipl users\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1662    product descript said 8th gen product labl say 7th gener bag headphon loot ppl\n                                                                                                                                                                                                                                                                                                                                                                                                                                         
1667    doesnt live upto expect slow responding\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1670    slow system valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1671    1 month system get slowi dont even instal 2 gb data 1tb rom\n                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1672    much time take process\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1674    take much time start upcompact\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1676    awesom product price genuin one window 2019 ms offic get 38k\n                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1679    batteri drain lot faster usual\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1686    twb youtub channel\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1694    slow process speed take much time open \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1695    product purchas wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1698    processor slowther partit window\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1699    pretti ordinari model\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1701    laptop box warrenti card avail pleas give it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1702    7th gen processor advertis clearli high priced\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1707    start laye\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1708    processor boot time slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1717    batteri life littl bit expected\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1720    improv thick battery\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1726    durabl less weight afford cost\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1727    load time take 15mint start system\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1728    process late\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1730    process speed slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1737    it’ worthi moneyit’ total wast money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1740    microsoft offic working\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1747    took 15 20 minut operation\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1750    worst buy laptop brother motherboard work tri write custom support three time replypleas strongli recommend buy laptope\n                                                                                                                                                                                                                                                                                                                                                                                                
1751    take abnorm long time boot\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1752    pleas dont buy productamazon also respond replac return product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1755    budget laptops\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1760    slow processor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1767    take much time start\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1772    get one year warranti card laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1787    dont buy this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1788    speed slow hai\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1791    garbage\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1792    wrost\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1795    cd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1801    1 month work now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1802    core laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1804    osm\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1807    return product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1808    laptop technic issu make slow given command \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1821    fantast favourit laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1822    brows noth else\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1823    microsoft inbuilt installedand use autocad use antiviru system\n                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1829    warranti package\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1830    window 10 verri sololi sistemand retoil verri poowr\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1836    pic video qualiti badtoo slow start\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1840    upto mark\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1842    valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1850    power full dual screen machin fluent gaming\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1852    beast gamer absolut fanatast perform clariti display awsome\n                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1866    wirk slowly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1870    perform slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1872    even dont consid purchasescreen size small 10 inch tablet\n                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1874    model singl memori slot provis m2 disk\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1878    work slow heat highli portabl product use tablet mode satisfi product dont buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                         
1880    slow hp pavillion laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1881    contain ms office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1883    slow moreov sl mention invoic check onlin warranti expired\n                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1892    purchas hp pavilion x360 14 inch fantast machin screen touch boot speed realli extra ordinary\n                                                                                                                                                                                                                                                                                                                                                                                                                          
1896    screen thin stabl cant work move vehicl carworst laptop use fancy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1899    hard disk crashspeak wake wellheat problemnow black bar come timehow mani time make product repairi want seriou action regard product\n                                                                                                                                                                                                                                                                                                                                                                                  
1917    prosstylish trendysmooth touch responsebrilli screenconsbit slower might due sshddpoor batteri 🔋 upto 23 hrsno finger print sensor\n                                                                                                                                                                                                                                                                                                                                                                                     
1928    get lapi 1one day deliveri look awesom time perform slow spec saw 8gb rambut 4gb ramthey said 8gb nand flash memori fast boot laptop\n                                                                                                                                                                                                                                                                                                                                                                                   
1929    speaker work came updat whole lapi inbuilt audio work tri everyth updat also done still speaker working\n                                                                                                                                                                                                                                                                                                                                                                                                                
1934    im use laptop five monthspros1good looking2 slim designcons1 slow performance2 batteri drain half hour3 smooth interfacefin commentsnot satisfi performance\n                                                                                                                                                                                                                                                                                                                                                            
1958    product duplic frequent hang hp authoris showroom readi interven bought onlin call center hp pathet unabl reach solv issu keep say resolv everi time log call\n                                                                                                                                                                                                                                                                                                                                                          
1959    comput slow \n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1962    batteri life speaker process speed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1980    got laptop even it’ got hangedi don’t do\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1981    usb port charg port damag month brought\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1996    laptop good mine defective\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2003    frustratingli slow touch screen work per mood\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2004    portable\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2005    likesgood feel keyboardm offic preinstalledscreen qualiti excellentdislikesslow\n                                                                                                                                                                                                                                                                                                                                                                                                                                        
2006    easi work on\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2010    origin os microsoft offices use item replac itreplac product os workingexchang period over\n                                                                                                                                                                                                                                                                                                                                                                                                                             
2017    speed goodgon slow days\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2029    get hang connect internet\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2030    go it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2036    averag laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2037    os load 4gb ram enough product come minimum 8gb ram\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2041    window 10\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2042    softwar updated\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2046    batteri life less3 hour minimum 6 hours\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2048    awsom speed cpu perform littl slow otherwis 5 star\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2054    keyboard fulli gone 6 monthsveri slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2055    slow boot speed applic access\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2057    mani issu slow work laptop hang lot\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2059    perform expectation\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2060    slow laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2062    awesom 😍😍\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2065    give bag along with\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2072    updat batteri life\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2077    product spec around 50k laptop one hard disk 128 gbssd atleat 512 gb ssd want sell one 65k\n                                                                                                                                                                                                                                                                                                                                                                                                                             
2085    buy ps4 prothank later\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2086    u dont know pc loptop graphic\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2088    get ps4 pro xbox one x instead\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2089    buy ps4 rather this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2104    understand laptop specif clearli go iti expect someth specif satisfi cant return alreadi spent cost os softwares\n                                                                                                                                                                                                                                                                                                                                                                                                       
2112    pro everyth look goodcon power button much butter\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2128    awesom expect quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2132    laptop hang often wake sound boot screen got also scratch vlc\n                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2143    usless product comparison price product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2144    use 6 month issu till now\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2145    student laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2147    laptop valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2152    valu money laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2154    buy product warranti add hp centre\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2162    game laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2173    got laptop nearbi retail 33500 rs launch date 25 dec 2017prosfast ram1 tb hybrid1080p displayradeon m530 graphic gamingconsno consi use mid rang game colleg work programmingworth buying\n                                                                                                                                                                                                                                                                                                                              
2176    window come also provid bag pack laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2180    excellentlaptopbatteri backup 4hr 15 mincharg time 2hr 30 min full chrgingsup fast laptopif dout ask me\n                                                                                                                                                                                                                                                                                                                                                                                                                
2193    dont buy laptopbecous dont get amd radeon 520 graphic driver\n                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2202    easi use handy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2209    major drawback 940mx graphic card come laptop go laptop mx150 2gb mx150 way power 4gb 940mx\n                                                                                                                                                                                                                                                                                                                                                                                                                            
2211    laptop goodonli drawback batteri life\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2217    unus return said replac returned\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2220    product expect good arriv damaged\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2232    i’m happi new laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2239    b e l p p n h p r c e r n g e\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2250    receiv bagpack along laptopal brand providing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2268    regist product show 8 month warranti remain give full one year warranty\n                                                                                                                                                                                                                                                                                                                                                                                                                                                
2273    complet wast money don’t buy this\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2274    buy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2277    slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2280    processor 15 ghz 18 ghz\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2281    normal screen budget goodwindow installed\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2282    game heatingbatteri life max 35 hr\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2283    averag quality\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2284    valu moneybut slower\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2287    system slow display go blank automatically\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2289    laptop chargingmi laptop warranty\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2290    need purchas bill hardcopy\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2293    valu money\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2294    wonder laptop hp price range\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2295    slow take time processing\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2296    use past 4 month work properly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2297    work time system hot\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2298    total wast plzzzzzzzzz dont buy it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2301    frequent auto restart hang up\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2308    gooooddddd\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2309    speed slow\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2310    slow processor\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2311    dont ms office\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2312    work properly\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2313    batteri life\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2322    isk saath aapko window 10 instal nhi deng ye laptop bhut jaldi heat ho jata hai aur ye bhut slow bhi chalta hai\n                                                                                                                                                                                                                                                                                                                                                                                                        
2328    pather laptop hpthi laptop give feel use 18 uear old mod rang comupter\n                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2331    valu money product\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2336    driver issue\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2349    screen laptop replac recent within short time purchas item cost rs4000 incur screen cover warranty\n                                                                                                                                                                                                                                                                                                                                                                                                                     
2355    ram chang coast minimum chang purchas it\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2362    genuin producti couldnt find laptop price windows10 pre installedthi one could use brows work ms officeheavi game may work configurationthank you\n                                                                                                                                                                                                                                                                                                                                                                      
2365    need instal microsoft vlc media laptop basic thing everi laptop\n                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2377    bought laptop 1 month back tri draw straight line convert heartbeat shapetri contact amazon hp support ask send video connect remot technician visit found problem exist 1 week still expect resolut clueless problem resolut never felt helpless\n                                                                                                                                                                                                                                                                      
2389    check channel drtechnno utub detail review mode check sound stylu screen touchpad independ videosdo look for\n                                                                                                                                                                                                                                                                                                                                                                                                           
Name: clean_text, dtype: object
In [27]:
from wordcloud import WordCloud
wordcloud = WordCloud(height=2000, width=2000, stopwords=set(stopwords.words('english')), background_color='white')
wordcloud = wordcloud.generate(' '.join(positive_reviews.tolist()))
plt.imshow(wordcloud)
plt.title("Most common words in clean_text")
plt.axis('off')
plt.show()
Out[27]:
<matplotlib.image.AxesImage at 0x1dc70d7bd88>
Out[27]:
Text(0.5, 1.0, 'Most common words in clean_text')
Out[27]:
(-0.5, 1999.5, 1999.5, -0.5)
In [28]:
from wordcloud import WordCloud
wordcloud = WordCloud(height=2000, width=2000, stopwords=set(stopwords.words('english')), background_color='white')
wordcloud = wordcloud.generate(' '.join(Negative_reviews.tolist()))
plt.imshow(wordcloud)
plt.title("Most common words in clean_text")
plt.axis('off')
plt.show()
Out[28]:
<matplotlib.image.AxesImage at 0x1dc70d53648>
Out[28]:
Text(0.5, 1.0, 'Most common words in clean_text')
Out[28]:
(-0.5, 1999.5, 1999.5, -0.5)
In [29]:
from wordcloud import WordCloud
wordcloud = WordCloud(height=2000, width=2000, stopwords=set(stopwords.words('english')), background_color='white')
wordcloud = wordcloud.generate(' '.join(Neutral_reviews.tolist()))
plt.imshow(wordcloud)
plt.title("Most common words in clean_text")
plt.axis('off')
plt.show()
Out[29]:
<matplotlib.image.AxesImage at 0x1dc70d654c8>
Out[29]:
Text(0.5, 1.0, 'Most common words in clean_text')
Out[29]:
(-0.5, 1999.5, 1999.5, -0.5)
In [30]:
from collections import Counter 

Below all functions used to perform unigram ,bigram amd trigram

In [31]:
def getMostCommon(reviews_list,topn=20):
    reviews=" ".join(reviews_list)
    tokenised_reviews=reviews.split(" ")
    
    
    freq_counter=Counter(tokenised_reviews)
    return freq_counter.most_common(topn)
In [32]:
def plotMostCommonWords(reviews_list,topn=50,title="Positive_review",color="blue",axis=None):
    top_words=getMostCommon(reviews_list,topn=topn)
    data=pd.DataFrame()
    data['words']=[val[0] for val in top_words]
    data['freq']=[val[1] for val in top_words]
    if axis!=None:
        sns.barplot(y='words',x='freq',data=data,color=color,ax=axis).set_title(title+" top "+str(topn))
    else:
        sns.barplot(y='words',x='freq',data=data,color=color).set_title(title+" top "+str(topn))
In [33]:
from matplotlib import rcParams

rcParams['figure.figsize'] = 8,6 ## Sets the heigth and width of image


fig,ax=plt.subplots(1,2)
fig.subplots_adjust(wspace=0.5) #Adjusts the space between the two plots
plotMostCommonWords(positive_reviews,20,"Positive Review Unigrams",axis=ax[0])

plotMostCommonWords(Negative_reviews,20,"Negative Review Unigrams",color="red",axis=ax[1])
In [34]:
def Bigram(text,n=2):
    tokens=text.split(" ")
    ngrams = zip(*[tokens[i:] for i in range(n)])
    return ["_".join(ngram) for ngram in ngrams]
In [35]:
positive_reviews_bigrams=[" ".join(Bigram(review)) for review in positive_reviews]
negative_reviews_bigrams=[" ".join(Bigram(review)) for review in Negative_reviews]
In [36]:
from matplotlib import rcParams

rcParams['figure.figsize'] = 8,6 ## Sets the heigth and width of image


fig,ax=plt.subplots(1,2)
fig.subplots_adjust(wspace=0.5) #Adjusts the space between the two plots
plotMostCommonWords(positive_reviews_bigrams,20,"Positive Review Bigram",axis=ax[0])

plotMostCommonWords(negative_reviews_bigrams,20,"Negative Review Bigram",color="red",axis=ax[1])
In [37]:
def Trigram(text,n=3):
    tokens=text.split(" ")
    ngrams = zip(*[tokens[i:] for i in range(n)])
    return ["_".join(ngram) for ngram in ngrams]
In [38]:
positive_reviews_trigram=[" ".join(Trigram(review)) for review in positive_reviews]
negative_reviews_trigram=[" ".join(Trigram(review)) for review in Negative_reviews]
In [39]:
from matplotlib import rcParams

rcParams['figure.figsize'] = 8,6 ## Sets the heigth and width of image


fig,ax=plt.subplots(1,2)
fig.subplots_adjust(wspace=0.5) #Adjusts the space between the two plots
plotMostCommonWords(positive_reviews_trigram,20,"Positive Review trigram",axis=ax[0])

plotMostCommonWords(negative_reviews_trigram,20,"Negative Review trigram",color="red",axis=ax[1])
In [40]:
COUNT=0
def extract_allowed_pos(text,allowed_pos=['NOUN',"PROPN","ADJ"]):
    
    
    text=re.sub(r'[^\x00-\x7F]+',' ', text) ## Remove Ascii Characters
    text=re.sub('\s+', ' ', text).strip()
    
    nlp = spacy.load("en_core_web_sm", disable=['parser', 'ner']) 
    
    text=text.lower()
    

    document = nlp(text)
    
    doc_cleaned=[token.text for token in document if token.pos_ in allowed_pos]
    #print(doc_cleaned)
    doc_cleaned=" ".join(doc_cleaned)
    #print(doc_cleaned)
    #print(doc_cleaned)
    return doc_cleaned
In [41]:
df['cleaned_noun_adj_review']=df['Reviews'].apply(lambda x:extract_allowed_pos(x))
In [43]:
df['cleaned_noun_adj_review']
Out[43]:
0       sound laptop necessary drives.please solution item                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1       amazon wrong pictures keyboard silver colorif review laptop useful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2       customers items sbi card pleasr statement details prouduct interest bank additional interest month month amazon matter customers sbi cards payment                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
3       laptop month use.pros:- overall looks interesting.- screen size display usb ports hdmi rj45 connector usb jack card slot cd rom.- intel i3 7th gen laptop applications browsing experience good.cons:- minute laptop able hang.- full size keyboard numeric buttons right present.overall verdict decent laptop price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
4       message unsatisfactory product i3 7th gen gb ram slower celeron processor other laptop infact simple basic task mail laptop gaming slow % memory % disk usage show time open task manager.i hp messages hp other reviews promising hp customer care laptop sad thing one mail.so sick hp service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
5       laptop day ago.it amazon laptop lifetime validity ms office.but not.we year.feeling disappointed amazon wrong feature                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
6       purchase laptop use last days performance wise slow comfortable everyday use.suggestions better laptop same price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
7       bloody product customer support                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
8       display quality speed bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
9       products original hp?find photos same.i i5 i3 different                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
10      first boot hrs waste money tension trashpro advice goto showroom lappy dn online marketing crap                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
11      brand mine system hours delivery laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
12      performance about.i more time installing updates laptop.it slow months hp customer care software recovery.i steps product warranty online classes basic browsing ie gaming other heavy stuff.i service visit software issues service visit arranged.i use guarantee windows version remote place nearby service centre option other item kind support hp.should eye opener planning hp laptop.after month laptop indicator much pom pom ed hp advise crapupdate hp defect hard disk service engineer hard disk usb media hp rs service engineer windows cloud recovery hp free replacement recovery media keypad lappy service centre whole process                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
13      pros1 sound quality good2 picture quality satisfactory3 camera average price range4 keypad comfortable5 life time validity windows home mso student.cons1 anti virus macafee trial version days2 opening applications slow better i5.3 battery removable.notevalue money laptop performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
14      good product.awesome battery backupworth moneysimple drawback antiglare display                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
15      folks product review other product responsibility review.this laptop weeks observations pros light weight.single coat appearance nice.keyboard robustsound quality good.cons speed product speed great.touch pad smooth.laptop hot.overall games budget less k. product thought.thanks hope helpful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
16      worse purchase amazon amazon hp low quality product laptop display month physical damage warranty manufacturing defect low quality parts hp customer such hp products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
17      dell laptop hp dell better major advantages laptopms officegreat speakerthe display low quality system slowi older configuration lot better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
18      nice sound quality nice backup value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
19      laptop slow msi laptop model better actual laptop slow sure original ecommerce side online one one bad new tab sad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
20      value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
21      system much time mins minimal softwares restart system more hr updates background.sql server only heavy weight software more gb hard disk free i3 7th gen processor same issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
22      awesome laptop much negative reviews                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
23      disappointed performance laptop first day lots issue task minimum double time few seconds m laptop regret wise awesome battery life average only major problem laptop command laptop files laptop amazon product original                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
24      worst product hp performance slow applications defective speaker head phone warranty year                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
25      value money good quality normal battery life hours nutshell laptop good price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
26      product packing great laptop gud.pros anti glare display great.keyboard gud .camera great.sound loud clear.laptop lightweight.cons bit upgrade ssd drive gamers ram nd graphics upgraded.good medium gaming.overall great laptop budget 31k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
27      single word- worth slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
28      product 9th may app slow much time dell lenovo kind product hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
29      product month complaint slow performance remote support hp desk service center improvement home assistance arrangements hp revert such faulty product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
30      slow laptop bad purchase piece junk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
31      quick delivery amazon.have laptop single issue date.not sure performance gaming gaming.battery life good power saver mode heavy usage.easy much compact well.overall performance good heavy usage heavy usage programming gaming.my opinion reasonable good performance light weight value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
32      good laptop beautiful colour design windows needs upgrade updation satisfied laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
33      overall laptop gooda colour common.(standard)display superb depend quality see.mcafee antivirus day trial.performance excellentstorage- plenty enoughgood programming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
34      expectations quality poor specification hp outlet                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
35      review slowwwww worst product hp response customer care amazon.go dell lenovo other brand hp amazon service.laptop krk jao better laptop same price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
36      good product requirement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
37      first place laptop amazon upfront t need same packaging amazon amazon high price products customers images text way t need don t performance expectations.poor amazon policy own risk final sale way it.when load upload first software youtube videos video performance laptop stuck mins video full screen mode while several performance issues laptop don t don t don t don t buy this.when mb file zip memory memory utilization % application dam comments 27-jul-2019 technician visit tech guy issue amazon replacement replacement worst pics review                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
38      laptop duplicate processor slow better laptop market                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
39      product activation key missingvery slowi'm pissed product god sake                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
40      bad system slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
41      weeks review.it nice useful product daily use battery life good screen quality awsome camera quality little bit okey                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
42      product quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
43      process slow.ms office antivirus trial period drive partition c drive battery backup time hours only.wifi jio g data usb port usb port type c type usb port letters thin difficult low light(hp keyboard light).hp heat vents display area.when long time bottom area display screen screen laptop heavy nice laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
44      kaam heating issue much problem normal daily use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
45      order hp laptop message installation came2- buy replacement day performance3- voice quality picture quality replacement productbut cus same default other product regular customer many year"s                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
46      gadget guys short review above model lappy today.design goodweight light hpspecs nice config decent budgetfhd screen new addition good resolution anti - glarebattery interesting aspect lappy good backup satisfiedi3 gb ddr4 combo more initial booting updates lappy slow time setup lappy good lappy affordable price package 26.5k offer credit card offers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
47      product amazon satisfied product range 31k speaker quality poor screen quality mark good side.but thankful bajaj finserv financial need thnx bajaj amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
48      modest pricing reflective responsiveness system job entry level laptop basic browsing reading secondary laptop use children.biggest pros screen size extended keyboard dedicated number pad.biggest cons slowness laptop absence backlit keyboard latter purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
49      one non laptop application down.microsoft office slow starts mins amazon it.i wish amazon.this worst experience amazon laptop money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
50      slow laptop slower year i3 laptop same price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
51      worst product pathetic laptop hangs day times waste money seller willing return period kind sellers reputation market                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
52      junk product single star other choice bad mins app own time i3 gb ram worst product 19th century computer good junk product sure hp product quality correct spareparts hp model scrap items hp employee kind worst experience hp product hp kind product hp share value product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
53      disappointed product hp job hp local product product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
54      bad product one waste money slow performance gb mobile phone battery hour money item seller customer care return policy product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
55      decent product price range lighter windows value money buttons amazon technician verifying new laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
56      slow years old laptop better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
57      product today ms office ms office product key ms office key package document ms office.after months mouse windows obtion unable bluetooth mouse ok other issue system superb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
58      product student best entry level laptop important functions student buy itit pre ms officewindows money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
59      specifications laptop lifetime warranty ms office warranty week query                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
60      good laptop home use ms office pre loaded smooth bit slower expectation core i3 7th gen good value pricepoint                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
61      bad experience worst laptop problem first day personal use laptop games simple task thing i3 processor becz i3 seller fraud laptop i3 sticker tha laptop garbage fill.worst performance worst laptop go dell laptop good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
62      ekdam ghatiya h act old laptop performance slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
63      laptop slow lot time battery backup bad warranty card laptop poor display msoffice valid month                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
64      system windows office suite booting speed slow system better performance wich                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
65      screen border black rest parts silver u dark area coz light keybords keys                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
66      range good laptop single drive partition c drive lappy.secondly issue black screen error time thanks budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
67      laptop hp months laptop:1 minutes disk usage % % data c drive.3 google chrome edge browsers hp customer i3 good windows better i5 os windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
68      best quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
69      windows least gb laptop slow regret                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
70      slow machine ms word laptop slow.on boot disk utilization % processor utilization % mark performance consistent specifications                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
71      provision star available laptop slow g network time link                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
72      laptop good reasonable price config battery little description lagging issues startup few changes fine keyboard soft easy num pad handy numbers better keys different colour.overall good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
73      laptop day laptop complaint period many attempts unable amazon customer service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
74      battery good bt sound quality average average processor disappointed product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
75      bad experience amazon packing laptop bad packing surprise laptop name jitu pawar password profile above amzon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
76      best product price range.1 weight decent2 gaming performance high.3 product battery life times full charge hours backup.4 last days hanging issues also.overall laptop games best product price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
77      inspite gb ram system point laptop minutes basic application ms excel ms word browser chrome time lag sad 30k trash                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
78      excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
79      slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
80      sir madamas requirements ms office bag factory immediate call laptop screen quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
81      good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
82      dear sir madam hp laptop touch pad same asap                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
83      worst laptop world issues:1 dead slow2 hang3 battery backup mark.4 trouble admin access waste pure money product worth half different                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
84      battery life good problem silver white body colour scratches dirty black colour body laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
85      worst product amazon worst laptop life product mother months beginning product point time unable atleast product product site warranty hp service team reluctant onsite service product.hp -                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
86      laptop primitive configuration laptop market good things time sleep bad things slow more tabs browser google chrome likely chance laptop freezing more worse network adapter ghz band gb ram inadequate                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
87      cheap showrooms brand new lappy good packaging pre ms office i3 7th generation processor lags normal tasks lot time booting gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
88      worst ever product hp trust hp i.m hp products many years hp dealers atleast laptop warranty period                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
89      product good bad hang regular basis                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
90      laptop poor finishing gaps right side keyboard panel cd disc scratches                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
91      worst performance price range slow sound                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
92      bad experience product months spot screen service center screen damage warranty suggestion laptop other expensive products amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
93      speed machine slowest good basic school work hp such bad product reason low price price %                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
94      useless productvery slow processingit better product showroom amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
95      disappointed performance quilty slow system slow other systems defective                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
96      laptop slow dell friend                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
97      laptop great i3 usage everyday surfing movies ms officenot gamingcame life time valid os ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
98      confusionlaptop power oni opt return hp answerat last amazon for3hrsthen people other wise bad impressionsat least hints                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
99      hole laptop colour good keypad silver colour good light gm ram good hang problem extra gb ram performance good gm ram laptop gb ram laptop buy bilvery product bad amazon divery agent call time rply amount choice frnd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
100     warranty laptop laptop hp service center laptop serial invoice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
101     processor slow keypad key laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
102     nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
103     patheticamazon support case details hpmy laptop useless less thosepathetic                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
104     slow more minutes minutes windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
105     processing speed slow basic apps office web browsers benefits genuine windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
106     device faulty month device                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
107     defective product sellers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
108     time worst laptop dell i3 nd gen gb ram gb harddisk old laptop better laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
109     worst laptop such useless device life slower nursery faster device                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
110     worse products dnt feature product possible                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
111     budget 32k good general purpose excellent product many slow first time lot time great no updates updates performance great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
112     worst laptop ever.service amazon good product good offline product amazon bcz smallr hp genuine laptop.heating issue right side touchpad slow other i3 products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
113     month laptop happy performance way                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
114     pros good wise.display nice other laptops price range.cons hangs multi tab reliable gaming office software word gb ram model                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
115     one laptop unexpected aware laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
116     super ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
117     product good warranty card big fault amazon side acceptable amazon fraud customer many times customer services number                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
118     product good warenty card windows plz information product dear amazon issue belivable customers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
119     good looking laptop full hd screen good sound quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
120     worthless amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
121     nyc superb budjet dizz product more data                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
122     genuine happy product gb ram ok gb robust experience overall good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
123     lappi slow much time chrome other app products amazon none happy products amazon future                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
124     good laptop day tasks average laptop price 30490.there information available type ssd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
125     price worth battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
126     slow stuffing many times                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
127     amazing product extra gb ram best use additional ram laptop slow extra gb nehru place kingston                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
128     laptop ms office ms office life time windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
129     hp product good support services poor hp product dell items better hp items                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
130     response time slow battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
131     product quality issues fragile waste money service poor product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
132     minutes dis                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
133     worth penny                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
134     laptop laptop slow hp support good solution problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
135     battery sound build quality good i3 processor slow laptop simple usesage i5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
136     system slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
137     good;battery backup fast charging nice sleek looking games application                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
138     worst product multiple windows lot slow fancy peice attractive worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
139     value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
140     good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
141     slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
142     new laptop longer time app performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
143     laptop durability battery life good bit slower side mins login windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
144     half months battery today % battery ac adaptor swith answer problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
145     material body making bad glass breaking type solid material.very bad material                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
146     good otw unsatisfactory product speed slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
147     slow laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
148     last month small defect right side panel screen laptop slow day much use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
149     slowest laptop world dnt value money don't                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
150     good complain extra rs 28th prime customer 29th rs less due prime customer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
151     useless                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
152     system slow ram low people products laptop amazon product stores                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
153     problem operation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
154     veryyy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
155     good bit due internet speed issues ms office version free amazon batter inbuilt sound quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
156     keypad bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
157     dumbest decision ve slowest laptop clean format doesn t work t money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
158     worst lapi slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
159     slow lot time kid middle range laptop useless user experience frustrating waste money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
160     pros light weight slim design good battery life charging extra features cons hell lots time start booting system slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
161     product last month one screen bill product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
162     slow ram upgrade                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
163     slow better regular use performance less gb ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
164     great product quality hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
165     item happy performance quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
166     graphics suitable slow start.after black screen problem.also down.warranty hp website                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
167     laptop disappointing battery backup good display quality good ssd ram smooth work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
168     product issue keypad complain one issue bad product service hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
169     worst product third grade quality china online worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
170     good school office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
171     review battery life hours picture quality average processing speed average                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
172     product worst product hp company laptop hp company amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
173     p1 system most time hang hang hand window everytime                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
174     waste money full problem much time vedio                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
175     nice laptop smooth keyboard good gaming windows touch screen laptop performance excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
176     worth product slow work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
177     verry slow screen quality bery wrist product old verry disappointed hp quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
178     good ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
179     performance laptop poor more time apps files hang useful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
180     worst product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
181     hp laptop friend nice product hp usual genuine service amazon amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
182     anti glare yesfor goodportability- pints budget best option                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
183     mins                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
184     battery backup good speed little slow nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
186     worst money laptop keyboard good typing visible words keys due silver colour keys board                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
187     worst laptop market.very slow such basic things                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
188     bug windows laptop hibernate battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
189     slover speed costly electronic item laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
190     ms office worst experience ur regular customer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
191     slow processing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
192     slow laptop bcoz i3 proc pc pentium core faster due settings other fact                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
193     goodproduct                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
194     product bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
195     battery removeable removable system good slow good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
196     good condition system times little slow other wise goodone product demerit drivers software cd box charger laptop box                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
197     bad product hp slow process bad customer service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
198     windows works slow gb configuration better gb wise ok fr 30k range laptop gb os                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
199     satisfied performance laptop battery backup cost this.also % cashback month warranty laptop vqr helpful button.happy purchasing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
200     months usage review battery price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
201     good product dealer hp service centerdear mr ms kumar status request closeddo email unmonitored automatic service contact information.please note materials notification materials reference number description hp g5 notebook pcproduct number y0t72paserial number description portal case url n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
202     wonderful product price effective price delighted it.pros good battery life lightweight.- price durable excellent daily use.cons suitable high end gaming.- dos windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
203     damage laptop disappointment                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
204     personal use surprised lightweight battery backup good hours full charge tasks smooth lags lots windows amd quad core processor jalwa windows awesome price point supercool product next day prime subscriber others jackpot.note hp warranty past many people issue hp products amazon hp guys warranty product amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
205     laptop lines display laptop work days lot problems product return return warranty laptop hp company                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
206     lightweight hp less worth deal.the only gripe offer period price offer period lower one fair amazon warranty month sep easy softwares                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
207     fine bluetooth drivers hp downloads seller drivers realtek hp broadcom intel                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
208     right hand side vertical line screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
209     amazon product years october product october vga usb hdmi ports rusted.moreover policies technician product complaint product photos hp website warranty june update basis response amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
210     demaretsthis product window driversit humble request amazon atleast provide network driverand product laptop actual details product differenti product voucher boxusb port side driver thatmeritsbettery life fair last hoursfunctioning smoothoverall good window                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
211     daily work fine super m.s office abd other games non mini laptop 18k price range laptop hp brand performance equal i3 amd a6 proffeser good amd a6 equal i3 order                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
212     use year developer good basic programming framework.build quality use linux os(ubuntu linix mint os work better smoother windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
213     bitter experience amazon cd dvd writer noise hard disk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
214     solution                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
215     happy product.but sound device first purchase amazon product best price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
216     good laptop atleast issues great budget laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
217     laptop amd processor low budget home use laptop os win 64bit os necessary drivers hp web site.it moderate laptop net surfing other office work display moderate low end hamming laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
218     good budget laptop dad hardware spec right daily basic usage office apps movies screen good quality angle better most lappys budget.thing os bluetooth bluetooth usb adapter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
219     quality good battery exhaust amd processor bit slow cab happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
220     months battery non functional laptop electricity warranty hp claim worst experience ever.this due design battery protrusion battery even surface)laptop overall functioning good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
221     good buy small business week touchpad smooth difficult few lags other intel processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
222     19k alienware average mousepad ordinary battery display great trips better original window                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
223     laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
224     price pocket hp reliability assurance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
225     laptop day receiving.laptop battery adapter double box.only dos .drivers other apps downloaded.nice laptop bag supplied.overall good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
226     multiple applications                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
227     product good warranty seller back seat warranty months many times seller response                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
228     good product m months product awesome speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
229     screen lines amazon several time hp support cheated inspite senior leadership team several assurances days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
230     good extra installing windows antivirus                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
231     laptop value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
232     nice productandnice pricethanks amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
233     laptop good price information correct                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
234     fast work.awesome battery backupand interesting thing fast charging                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
235     price range more price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
236     laptop years i'm jus basic purpose studies movies today good product cheaper price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
237     screen quality perfect screen bar line lines displays                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
238     lightweight easy appropriate ram screen storage space suitable students professionals lightweight performance laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
239     chapati stone laptop goodness front courier person much online product more rs delivery satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
240     amazing products last few months day(long hours) wonderful product budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
241     prompt delivery original product thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
242     iam happy product requirement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
243     amazon laptop hap touch fake fake fake amazon fake                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
244     usb sockets good shapeless                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
245     nice one price.look awesome display weak big issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
246     good laptop basic daily needs worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
247     good battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
248     good product affordable price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
249     best laptop price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
250     gud                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
251     basic version ms op bettter other versions effective                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
252     lot poor screen quality graphics low money waste product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
253     horrible product one less days use more 15min                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
254     able angular setup                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
255     good laptop 18k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
256     bit bulky range hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
257     dvd writer laptop last week                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
258     amazon satisfied product genuine product lower price amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
259     best laptop price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
260     good product satisfactory performance sound low                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
261     lap top ok advanced version product product ramanagar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
262     help os                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
263     good battery life poor performance average body quality god                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
264     wrong product product optical disk drive pic optical drive                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
265     value money nice laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
266     satisfied product amazing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
267     nice n l lot agood choice woman easy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
268     nice laptop price home non professional usage.arrived time overall good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
269     laptop nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
270     good product less price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
271     great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
272     fantastic lap battery life good good working condition                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
273     wit complaints worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
274     good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
275     brilliant purpose                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
276     awesome product 20k price tag kinds os.download necessary drivers hp official website.battery backup quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
277     bad product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
278     defected product wrong warrenty period                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
279     specification product nice complaints                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
280     third quality laptop windows bhi alag se upgrade karana padta hai                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
281     good nice product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
282     battery fuxntion battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
283     worth 19k thanks amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
284     value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
285     price good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
286     satisfied product.good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
288     laptop service good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
289     very.goood                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
290     product better battery performance good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
291     awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
292     good product price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
293     best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
294     good usb port                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
295     good product hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
297     good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
298     good product range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
299     worth cost purpose good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
300     package damage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
301     wonderful product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
302     quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
303     good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
304     nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
305     satisfied product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
306     sasta sundar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
307     bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
308     defective product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
309     normal work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
310     bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
311     bad product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
313     bad laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
314     good buy basic function                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
316     worth price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
317     good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
318     nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
319     battery bacup gud                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
320     good screen quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
321     best laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
323     laptop sahi nhi h                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
324     value money unique category                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
325     good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
326     nice laptop light weight virtualization best budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
327     poor product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
328     good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
329     nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
330     good configuration speed good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
331     good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
332     bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
333     great product value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
334     bakwas                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
335     bill laptop warranty card                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
336     nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
337     cool battry drainage issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
338     good product price segment                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
339     product worth money better choice middle class performance good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
340     excellent product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
341     window                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
342     better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
343     good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
344     thenks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
345     great product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
346     value money awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
347     nice processor fast worth buying                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
349     good compact                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
350     excellent product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
351     good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
352     good products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
353     excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
354     excellent product worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
355     great laptop price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
356     windows person new os.- a6 better gen i3 processors- quality good price range.- back light keywords aware same.- optical drive vga port hdmi usb card reader bluetooth mm headphone jack awesome mobile headphone mic                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
357     good product 19k issues processor hardware months good students problem driver software usb ports unavailable hp software site lenovo drivers other issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
358     connection several times drivers installation efforts drain hp issue service man                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
359     week experiencegood product price.using ubuntu decent amount ram regular progs heavy files memory good graphics runs steam hitman game a6 apu.3 decent build4 good battery backup hrs backup videos wired internet.5 problem summercons:1 hour more battery backup great2 inch screen little verdict decent laptop price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
360     quality last months crack keyboard battery locks properly(one et al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
361     months mother board warranty next day fan case waiting.edit fan warranty rating os crashes blue screen day sure hardware software issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
362     awesome product price range last couple days lagging issue heating issue budget range 20k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
363     amazon last month time issue machine anti glared screen great applications windows bettary hours continues use light weight slim budget requirements                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
364     laptop days prime thanks seller.product cheap good performance touchpad responsive windows overall better performance hdd ssd upgrade ram gb gb gb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
365     laptop axis bank credit card months first credit card bill product emi complete amount statement bank seller amount emi complete amount credit card bill fuss                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
366     good product good value money months keyboard light dark problem other good basic uses programs good enought android development amd cpu arm system image slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
367     product defect left side usb device connector connection pendrive charger wise device time return more nice fire enthusism                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
368     ton laptop price solid extra gb ram laptop interested ram dimm slots gb other free extra dimm sure low voltage sure regular ddr3 voltage motherboard compatible stock dimm hynix ddr3l gb hynix hyundai electronic division win x64 bit seconds max extra ram computer zip processes heat issues glitches month use weight solid finish pseudo metal type artwork touchpad areas cheap plastic amd a6 best processors great long life care older a6 dual core years laptops vents dust cool place amd a6 money intel i3 i5 generation processor complete waste money intel lawsuits past faulty soldering processors google only things keyboard laptops moulding keyboard keyboard protector removable keyboard screen ok great anti - glare matte finish default ips hd screen price point more presentations students moderate office work stuff gaming high fps drivers pc bit pain hp support assistant pc drivers warranty similar hp laptop similar chipset drivers support page hp g 221au drivers pc audiophile laptop sound quality speakers bottom wrists dts sound application realtek sound driver best sound cards long time don't solid bass unrealistic sound clarity volume loudness good other laptops good set ear headphones dts settings default generic windows equalizer amazed sound clarity bass dts webcam good great basic skype photo snaps computers vt virtualization technology interested virtual machines other simulation software able dvd drive slim dvd writer small profile quiet readingit rj port vga port hdmi port 1x usb port usb ports touchpad responsive synaptics elan touchpad bit downer synaptics best touchpads job issues trackspeed movement bluetooth good realtek chipset connects first shot issues realtek chip good signal floors concrete house rebar several walls sure good wifi driver card default windows driver bar realtek driver bars signal strength settings device manager control panel laptop budget keyboard protector saco brand it) laptop years old terms chipset mid terms amd a6 price point terms ports worth it!if review helpful like helpful button thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
369     great laptop prize stars windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
370     days delivery laptop best noticeable lag price range best battery life superb most softwares heavy coding softwares normal company use good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
371     bad.never bad display.far average display.regret buy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
372     amd a6 better i5 processor doubttested games nfs mw elite effect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
373     problem win bit installation little bit lowered catylist driver installation.battery web browsing hse comp.sc/app tools functions ms office gimp geany gcc compilar libre office sql php ubuntu lts dual boot system grub update terminal dual boot screen ubuntu brightness problem win amd display driver configuration                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
374     good oneif gamer best choice price range thing moderate use body seller good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
375     absolute value money budget model high speed hard disk business laptop hp website price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
376     satisfied price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
377     good productshould accessories bagand cabel way good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
378     display laptop good driver picture quality display grainier jazzy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
379     excellent product decent price bracket performance excellent higher ram good battery backup hours*/depends individual usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
380     ports speed mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
381     nice laptop home use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
382     days laptop complaints stuffs better aspect laptop one onebuildi laptop vacation outdoor most part firm light weight whole plastic enough place need keypad light work dark top good texture hp logo usb port none lights webcam right side laptop hdd notification lan port right side usual cd reader writer keypads tactile clicky front side card reader left hdmi back u battery down sideperformancei laptop daily presentation stuffs amd a6 g4 radeon lags massive slow downs heavy software adobe games gta amd compatibility issues emulators antivirus defender good adobe photoshop games company heroes littlestandbybattery hours usage average opinion battery.it locks back bottom laptop pipe battery out.screenscreen bright anti glare good sunlight difficultycamerait mega pixel camera microphone decent one good photo enough lighting low light prone distortion sufficient video chatsspeakerspeaker bottom front laptop audible noise disturbance audible laptop good compactness.if average user productive works excel sheets presentation fine choice only plastiky finish performance money ok                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
383     screen awesome anti glare battery life decent keyboard good slight heating bottom summers sound good price point excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
384     plastic brittle grandmother windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
385     perfect school office use cheap beneficiao go.very smooth easy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
386     day lag stuck product ordering amazon time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
387     good product expectations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
388     unworthy product this.dont one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
389     good laptop price nice performance bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
390     process slow sound system bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
391     awesome product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
392     problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
393     laptop years heavy battery life many times                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
394     laptop good performance review usage invoice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
395     simple superb quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
396     good smart                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
397     keyboard                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
398     battery backup good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
399     name quality hp tb hdd gb ram latest 9th generation a9 processor hrs battery fast speed ghz 9th gen . processor today equal ghz competition good multi - tasking same time mistake thinking similar capabilities gaming laptops 21k best cheapest laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
400     product time prime member setup system ms office performance money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
401     nice laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
402     fourth hp product smooth battery half hours few video streaming full recharge half hours sound graphics excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
403     laptop hp 14q cs0018-tu 19k inr july prime day fast nvme ssd read speeds gb s windows boots less seconds cheapest laptop fast nvme ssd toshiba kbg30zmv256 g kaby lake r pentium gold processor cores threads equivalent core i3 laptop thin light keyboard decent brick small portable sufficient cable length.the major downside screen sub - full hd panel ok price point other downside speakers nit picking.overall happy laptop great web browsing productivity office work light programming best laptop inr segment expensive laptops rpm hdd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
404     rs price.the body plastic shiny plastic hp easily.1 display fine good bad.2 keyboard fine backlit keyboard price.3 mouse pad bit slow sensitivity.4 gesture support there.5 battery life good laptop netflix offline hours full brightness earphones battery good backup6 gaming basic games gta vice city expected.7 ssd huge difference pc boots seconds storage gb worth laptop other hp i5 8th gen processor8 usb usb ethernet hdmi headphone jack sd card reader ports.9 speakers good loud tiny.10 small fan heating issues.11 webcam ok qualityoverall good buy 20k product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
405     19k prime day deal good laptop school students gb ssd reasonable processor power efficient ram gb resolution price.overall premium laptop.windows great laptop latest build updatable windows update.first thing setuo uninstall mccafe software need windows defender antivirus software.also other crapware dropbox hp apps                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
406     laptop smooth sharp windows office thin light booting slow review couple days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
407     great hopes laptop laptop crucial business days receiving god long.i negative ratings garbage.bottomline cheap laptops                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
408     pros:- good entry level laptop compact light laptop easy keypad great subscription mcafee office school edition- sound quality picture quality top class good home usage light office work- good options touchpadcons:- touch screen- extendable memory slot gb ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
409     high end laptops ssd technology 1080p videos youtube lag anywhere.sound quality good headphones speakers ok normal use.boot time best less seconds.battery hours moderate use.no cd drive home student heating operation ssd think.webcam good normal chats hd one good.display hd good movies.never games.weight other laptops range.one downside office version trial 8k lifetime mcafee other junk softwares first boot windows defender good pc.price amazon eoffersindia price drop alert                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
410     good specifications fast performance gb ssd pcie nvme ssd nvme ssd advanced normal ssd difference hdd ssd's.but description dvd drive that.pros:1.thin2.handy weight hd.4.sound good.5.fast prompt nvme ssdcons:1.no keyboard light.2.no dvd writer.3.microsoft product activation few high volumes speakers sound.5 vga slot few people much issue).6 usb c port.7 usb 3.1let ahead.overall professionals decent performance gb ssd pcie nvme ssd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
411     back college laptop friends tb ssd whole set off.played whole assassin creed black flag little lag engineering softwares lag(except sucky wifi college)overall best laptop 20k hdd production power house budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
412     oer date product good condition hp good brand recepient best use same                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
413     great laptop price at19.5k battery life decent hours finish decent great ssd boot time seconds.negatives- keyboard okay hd resolution price cons acceptable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
414     first gb ram gb ssd model.got independence day sales % instant discount sbi card people performance gb ssd performance boot tb hdd model perfect home use student use gamers photoshop.my advice above usage categories best config available price point ssd gb ram tb hdd extra ram portable hdd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
415     product good first day beautiful beautiful yeh toh tatti hai                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
416     month review laptop rocket gaming laptop best normal official work web browsing simple editing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
417     screen good display awesome laptop sleek lightweight battery backup pathetic best hours maximum day trial mcafee anti - virus free careful other anti virus software - mcafee anti virus other ant virus software system similar problem factory settings good laptop better battery backup                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
418     good product basic usage lightweight performance sturdy battery good genuine windows bonus price point                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
419     ssd laptops.very high performance speed win10 loads second kaspersky internet security i3 i5 delay processing speed par i3 processor sdd weight light                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
420     good performance sound super comfortable slim light                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
421     laptop hardware problem cpu usage day % cpu usage skype windows laptop minimum laptop clicks next day laptop auto repairing auto fixing laptop today horrible experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
422     amazing product stylist look photography hobby needs picture adobe photoshop pics photoshop systems slow i5 gb better performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
423     good specification world brand hp licenced windows suitable colleges students cost effective problem ms office trial version days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
424     excellent purchase reliable brand smooth os 21k good deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
425     battery life last hours max normal uses screen quality little bit lighter weight fine mention laptop charger simple bag worst simplicity cartoon happy offer rs.19.999 range stuff good higher stuff                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
426     readers laptop days limited usage review helpful decision light weight good mac ssd windows boots less sec keyboard quality good sound quality good stereo effect.4 premium product build quality good.5 new generation lappy inbuilt battery user serviciable part pentium gold processor good core i3 gb ram gb ssd licence copy bang bucks decent laptop basic work ms office internet surfing youtube config normal office use autocad minitab nfs run all.if clear use exceptions laptop chota packet bada dhamaka great indian sale prise brand hp ssd traditional sata hdd huge diffanance working premium lightweight mac like gigs movies laptop external usb drive purpose daily usage ssd huge diffarance hdd usb ports faster file transfer compatable devices.please note dosent dvd rw drive battery non - removable laptop bag provided.i happy purchase thanks day                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
427     boots max seconds due nice windows gb rest fine good students programming daily stuff pdf charm.bought good value money satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
428     sec laptop ready for.2 external hardware lower quality plastic.3 screen color ok more price.4 light weight.5 battery backup ms office genuine office range.7 battery removable smartphone today replacement battery hp service center                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
429     good works windows good macbook pro par terms speed resolution okay high resolution screen personal use high processing application                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
430     light book copydisplay minimum colour quality light speaker sound                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
431     price point 20k smoothest operating laptop range ssd disk wonders battery backup good house requirements works perfect overall build good mat finish screen resolution ok sound quality good good value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
432     positive reviews product product useless sure product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
433     laptop rs exchange festival smart thing hp laptop standard tb hdd available price points gb hdd most home purposes light office work streaming better choice ssd better battery life laptop lightweight homely work pre - loaded windows steal price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
434     black line screen days product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
435     laptop good delivery fast invoice product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
436     laptop amazon sale old dell i3 laptop best deal boot due ssd usage minimal such web browsing movies ms office perfect buy external hard drive additional need space old dell vostro laptop great value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
437     today product average look natural silver colour price ssd one 15k performance wise product great battery life good screen resolution average overall value money other product brand offer same configuration amazing price point                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
438     laptop 18k bank offer great indian festival sale laptop next day packaging great review days.performance only laptop ssd price point huge difference responsiveness system boot speed windows boots seconds apps such microsoft word chrome pentium dual core hyperthreading logical cores decent performer web browsing word processing video playback best part gb ram box gb ram slot empty slot inch drive ssd hdd gb word advice laptop ton bloatware sure needless games software.build quality expensive laptop chassis plastic good quality little flex keyboard deck screen keyboard keys tactile good travel trackpad accurate tracking reliable gesture control.media consumption screen bright colours punchy inch display good size resolution price laptop sweat videos youtube external display peace mind hardware speakers loud clear high volume bass little lacking though.battery life light medium usage such youtube video playback web browsing word processing hours battery single charge laptop fast charging hours.final thoughts laptop replacement old desktop computer dad happy purchase need secondary pc computer old desktop parents laptop consideration sure laptop sale particular configuration available 25k bank offer deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
439     satisfied laptop booting speed application speed daily use application browser battery life outstanding comfortable daily use typing browsing books notes 13k amazon sale more happy.bonus point appario seller genuine product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
440     i5 earlier i5 hp laptop good heavy computing tasks comparison old laptop simple excel aggregation functions one test happy operations hours cpu % freezing due exhaust ducts such way flap reason.otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
441     awesome price range 18k nvme ssd boots sec low pentium processor regular i3 i5 hdd pentium nvme ssd i3 i5 processing power                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
442     value money laptop new pentium gold processor ssd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
443     laptop light.the processor fast ssd.i ubuntu wifi drivers available ubuntu.only downside display price.build quality sub optimal.overall fantastic deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
444     amazing prime day sale 18k first time user normal office work days superb aspects amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
445     laptop basic grade basic processor build quality basic worth money amazon pricing high worth price other ecommerce websites same model amd processor prices                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
446     price rs price range best laptop internet excellent choice laptop windows os more best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
447     good product hp.latest cpu os ssd ddr4 device note book secondary work device heavy user primary device students normal business persons                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
448     good poor speed keys hard pre ms office extra overall old dell better one better performance reviews                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
449     wise goodfor inch tabletbattery hr moderate usesome plastic niggles present need worrylaptop charger heavier laptopbootup time sec win extra gb micro sd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
450     laptop slow months laptop slow slow day                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
451     laptop office amazon service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
452     nice laptop compact excellent performance high battery backup giving feeding month                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
453     excellent product product rs 19,900/- thanks great indian festival sale only drawback lack cd deficiency external cd drive                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
454     handy light weight lap adorable good presentations people move overall good experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
455     doubt light weight laptop long battery life gb ssd system speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
456     expectations terms speed form factor display quality it.i small issue power button small one sure power led indication light side one sideways                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
457     satisfied excellent product speed good wise elegant light weight convinient last week.overall excellent product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
458     good deal.super boost productivity.instant app launches boot nvme down.massive bummer gaming mind.but best decisions                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
459     piece students nice decent config low price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
460     laptop good days use hp motherboard.i warranty period                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
461     fast booting crisp processing gb ssd device value money price responsive i3 tb specification device fine light good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
462     hdd slow ssd good experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
463     days happy decision worth daily domestic usage value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
464     k offer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
465     system slow drives reboot time large rest best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
466     decent product generic purposes ssd quick responses evident games other heavy graphics works                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
467     fast booting time setting process                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
468     fast entry segment laptop hp ssd difference boot time processor latest on.good light work office work windows bliss                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
469     good battery life best price much difference price range k laptops                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
470     display quality life quality good 4.5/5fast booting time good option                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
471     nice product thing good display quality.performance amazing sound amazing graphics good battery backup good ultra portable windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
472     business purpose amazing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
473     laptop amazon sale startup ssd light weight value money good browsing personal use product price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
474     good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
475     plzz genuine buyer laptop bcoz reasons speed sec n sec more                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
476     g8 price good performance i3 laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
477     positive more backlit keyboard                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
478     amazing laptop sexy n performance ssd performance supersonic                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
479     lappy good little bit overpriced day day normal work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
480     fast happy purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
481     lot problem software slow downs files currupt requests matter resolve issue weeks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
482     amazing laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
483     product drives product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
484     horizontal line lap top screen screen defective contact supplier arrange replacement lap top                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
485     great ssd superfast display issue great simple home work use.lighter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
486     value money good product price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
487     microsoft good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
488     useless laptop display poor letters article websites advice one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
489     good laptop gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
490     lovely laptop good specifications price basic computing needs discount less                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
491     hp laptop good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
492     average day low strength adapter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
493     product 20k thanks amazon handy compact gb ssd fast good battery life great buy normal user                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
494     hp laptop 14q cs0018tu gb ddr4 ram gb ssd drive open windows home chocklate kyeboard good experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
495     good product scratches surface                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
496     fantastic product range type excellent work laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
497     well.the screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
498     display good boot time awsome wrong specification usb port ports usb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
499     price good.ssd amazing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
500     good performance.using week fast delivery fresh product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
501     superb note book good looks light weight satisfactory performance best thing 20k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
502     space                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
503     smooth day day task                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
504     good laptop college students.ssd superfast                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
505     thin laptop professional use smooth fine                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
506     good laptop decent performance compatible issues laptop days usage good go students                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
507     reasonable product suitable home users                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
508     less storage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
509     best laptop range good featuresso laptop range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
510     good daily use light weight average processing speed okay                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
511     worst product multiple technical flaws                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
512     amazing laptop hpits powerful gb ssdboot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
513     display average laptop case average quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
514     good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
515     laptop same amazon website photo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
516     screen good good product price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
517     value money due solid state hard drive i3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
518     lightweight excellent screen quality good computing power personal laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
519     waste laptop foreverperformance poweroff                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
520     awesome ditto                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
521     booting fast.i happy laptop good buy home use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
522     best small budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
523     beast browsing light office work ssd charm boot time sec                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
524     screen quality good amazing battery life weight right                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
525     ms office download google chrome normal version                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
526     average                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
527     problematic weeks use screen vertical line                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
528     light weight value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
529     good laptop home school college small business use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
530     good customers name ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
531     great lightweight laptop college/ university                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
532     hand hard drive                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
533     good price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
534     nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
535     ok normal browisne good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
536     average laptop average price average use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
537     screen quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
538     worth buying                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
539     great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
540     initial rating detail                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
541     good performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
542     laptop great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
543     useful laptop students                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
544     light weight nice screen good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
545     better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
546     best laptop price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
547     product basic use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
548     mind purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
549     nyc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
550     excellent product value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
551     thought great deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
552     product ok amazon people worst                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
553     good product range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
555     most daily tasks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
556     size issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
557     nice laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
558     best configurations personal use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
559     good quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
560     good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
561     ok product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
562     doubts amazing products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
563     waste                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
564     worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
565     amazing product rs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
566     best segment                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
567     best budget laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
568     value money good speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
569     smooth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
571     value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
572     great product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
573     good quality products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
574     good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
575     slow start                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
576     good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
577     good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
578     report                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
579     product price ssd price good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
580     product expectations price point                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
581     good product slim sexy laptop easy response good 40s boot bad gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
582     laptop lot purchase price margin positive reviews advantage positive reviews demand amazon price margin worthy product product best average margin other product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
583     ms office product key activation model pre - loadedoffice pl product key pop message                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
584     great hopes laptop laptop crucial business days receiving god long.i negative ratings garbage.bottomline cheap laptops for!i replace tb amazon item today kch nhi hager muhje tb mita h m uske islye aur paise dene k lye ready huamazon hp ki market m value khrb kr rha h.so ilsye dear sir kch krna pdega nhi ak time esa aayega jab hp koi nhi lena kyuki m phle bhi hp tha mere perilsye mne hp ko liyabut amazon esa nhi chahata ilsye sochna pdega                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
585     laptop % sbi debit card discount varient gb ram,256 gb ssd boot time boots sec problems stuffs.every thing good screen sunlight price good choice perfect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
586     nice product worth purchase cost better ms office permanent version part os.battery life ok screen resolution nice light weight working gamming experience normal office study purpose satisfied product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
587     laptop may saturday product early morning may monday kudos amazon delivery worried damages scratches laptop laptop review weeks review pros cons features laptop laptop light feather easy body slim metallic look premium feel.2 boot time fast seconds homescreen password screen up.3 gb ssd drive reason laptop.4 touch brilliant responsive pen quick response designer pen benefit other utility paint multifunctioning smooth laptop application feature good tablet easily.7 windows interface easy android games apps apps store.8 usb type c usb hdmi sd card reader sides connectivity easy.9 battery life good usage laptop % battery show hours need charger.10 keyboard spacing short while main work content writing change typing speed.cons:1 screen- screen fhd 1080p videos full hd experience.2 ips plane switching feature screen quality shifts slightest change screen angle video content slightest shift angel change contrast black levels comfortable experience volume fine loud audios videos large room full people good speaker entertainment.4 laptop lot uncomfortable level laptop lap summers laptop front air conditioner little.5 laptop sturdy feature multiple times saying)overall more pros cons laptop biggest minus point screen gb ssd heed screen resolution good buy entertainment work major concerns.this good laptop 2-in-1 laptop budget 45k fhd display model same specs one 101tu model few days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
588     sister freelancer look few hours comfortable writing overall accessibility texture look laptop premium touch screen quick tablet quick keyboards disabled don;t keyboards tablet.it fhd visuals good speed enjoyed.i laptop students freelancers artists writers good traveling.it lightweight cost high pen cool more months further.overall price brand specifications value money more specifications i5 version gb ram version model cool                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
589     preliminary review laptop day beautiful slim good tablet technology amazing pen good better screen guard touch pen screen first i3 i5 i7 speed fine bunch software ssd hard disk boost gb ram stick i3 performance good edit keyboard hardware ram bigger ssd difficult model x360 hp laptops compact mobile phones battery other older hp laptops inconvenience people computer savvy laptops                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
590     great deal charm skeptical good buy budget 40k-50k corei3 8th gen ms office windows degree tablet screen pen slowness review days use month                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
591     first thing -performance machine same i3 ssd -no complaints good looking laptop biggest letdown display laptop full hd display.this hd display images let display visible over.more glass display pathetic difficult time.i more it.update:- considerable time.my biggest complaint display annoying fhd laptop few bucks hp fhd price point.(i screen gd stylus case other customers samsung galaxy note owners stylus actual use minimal hp pen advantage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
592     satisfied laptop fine touch screen stylus pen excellent keyboard sleek video quality mark notes browsing fast prime day                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
593     laptop fair deal usual amazon awesome cons.cons:1 speaker tablet mode better placement speakers nice.2 ram warranty.3 pen aaaa batteries expensive packs time battery second i3 laptop fan whole time.5 type c port bummer power bank unlikely.6 angles pros:1 touch screen awesome.2 best use case ms office work.3 latency pen par apple pencil.4 track pad windows precision drivers.5 speakers good laptop mode.6 ms office inlclude.overall worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
594     issue activation office pleased feedback review able ms office ms installed usable rating star stars unit lightweight good value money gb ram bit insufficient purpose system documentation spreadsheets presentations pen earlier initial review above!!!by product details impression ms office part purchase representation misleading office product details this.note delivery last evening review case activation key seller same                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
595     charm first day amazing lappy affordable price guys good mood mine                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
596     best options student silent fast flash drive operation great buy external hp monitor usb keyboard mouse excellent desktop home portable laptop home legal windows-10 ms office home student version more value proposition                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
597     laptop available microsoft outlook unlicenced unable outlook everytime oultook mail process                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
598     good deal exchange old laptop.it nice quality old laptop metal finish premium light weight sleek.boot time start time less sec ssd.display mukti gesture trackpad touchscreen pen useful speakers backup video streaming hours mild medium use least hours day single charge.genuine hp product website year warranty.ms office activation only.ssd storage available gbout gb ram most work lagging.cons display hd fhd ipsno keyboardno sensorother models available feature 10k extra.major point ssd ms office convertible pen includedthis best model market 30k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
599     fine @ disappoiting company omit ms office outlook pen funtionality great.also mouse pad noise attempt replacement one request                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
600     first touchscreen laptop apple products touchscreen satisfied look functionality battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
601     good model medium level users product day actual date.booting speed good only thing product many apps touch average quality.got attractive price old model                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
602     16th jul hp pavilion able followed instructions next day pin blank screen appearing.lets c help vl update                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
603     primeday offer old laptop low price worth price fingerprint scanner able laptop hp ram capacity hdd capacity helpful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
604     average product dead pixels screen box hp support contact amazon amazon agent replacement one better manufacturers website amazon third party retailers case box issues resolution description hd screen colour dull looks non hd windows configuration setting hd screen amazon hp dissatisfaction                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
605     amazing laptop fast touch good pen worth best laptop price.note issue battery near hp descent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
606     lightning deal rubbish                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
607     wise wise good laptop external hard disc variant gb sata                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
608     product days rest thing good battery backup bad start full battery hours worried line product battery life hours happy battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
609     product exchange i3 laptop fantastic.mcafee month expiry.rest windows ms office free fast response constraint gb ssd u amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
610     screen flexibility highlight available other brands well.screen quality good game picture better visible angles                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
611     product details impression ms office part purchase representation misleading office office instructions reviews issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
612     good product good condition backlit keyboard                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
613     bad review laptop awesome laptop most people touchscreen disadvantage laptop finominal great mine craft pc pc mode tab pocket edition best laptop time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
614     amazing service amazing delivery quality product best market price thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
615     good product touchpad slower side speed highest satisfied product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
616     product condition                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
617     damaged product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
618     handy lapbook fast worthy.different kind usb ports available many devices windows office kind great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
619     good buy budget touch screen awesome stylus response battery life amazing screen little unstable vibrates fan worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
620     broke poor quality services good laptop pathetic service amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
621     excellent user friendly                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
622     best laptop budget category ssd drive touch screen i3 processor light weight laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
623     lawyer usage reading research drafting happy way laptop first month usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
624     keyboard screen laptop keyboard spacious laptop bends hassle challenge battery backup ok great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
625     screen days purchase.lets guys sad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
626     worried product.as date lap value worth money thankful amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
627     amazing product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
628     product x360 last months motherboard available                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
629     nice cool product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
630     product image model product finger print sensor model                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
631     product backlit keyboard keyboard feature fraud amazon seller                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
632     good battery life fast excellent light user                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
633     worst decision heavy looks same pictures                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
634     good product delivery time quick                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
635     good portable lalptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
636     laptop good issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
637     screen quality worse worthy product price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
638     good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
639     battery life satisfactory                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
640     everthing great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
641     good sleek                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
642     good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
643     product nice 10th gen fhd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
644     performance ok audio output silent pc hp sound issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
645     awsm look phon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
646     product good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
647     worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
648     price features                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
649     osm great feelings                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
650     awesome great value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
651     price awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
652     laptop costly slow works touch quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
653     good choice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
654     lap many problems time right buttons                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
655     good value money ssd drive                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
656     much time pc file                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
657     good laptop price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
658     full hd display cherry top                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
659     full hd screen ones screen pathetic                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
660     good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
661     worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
662     value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
663     touch smooth display quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
664     good product fast delivery satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
665     awesome speed good looks overall nice deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
666     resolution great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
667     amazing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
668     worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
669     bad product product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
670     excellant product hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
671     nice product iam                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
672     nice producteasy usesmart                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
673     features                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
674     best laptop price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
675     perfect storage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
676     useful price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
677     only drawback display                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
678     good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
679     value maney                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
681     best product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
682     product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
683     nice product valuable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
684     effective                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
686     cool                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
687     awesome laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
688     good buy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
689     laptop good specifications price touch screen pen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
690     cautionary tale laptop late feb service centre thrice third month motherboard june system min chrome ms word other hour hp people catchphrases sorry system that- ram system fault hp.moral story:1 hp laptop2 customer care person clue hp service.4 touch x360 gimmick fact machine hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
691     hp lapotp june amazon problems start hp defects service km hp laptop warranty hp website laptop warranty hp laptops pcs hp warranty customer service center hp customer relation manager concept problem u r hp rpoduct repairs man only point contact cough money repairs blame customer.inferior quality material base panel hinges dell laptop self company dell excellent problem laptop hp 3k u                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
692     hp best laptop ms windows gb ssd smooth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
693     laptop worst months laptop display support hp worst support hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
694     osm yrr bahut zaberdast laptop hai high graphic game mai thoda lod padta hai yrr bahut stylish osm yrr laptop ke sath ese fold kare tablet bhi bana skte hai bahut badiya value money product good agar aap lena ke soch rhe ho jao le lo yrr kamal ka hai product hp bahut light whiegt hai                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
695     worst product.screen poor.don't                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
696     low sound cheap plastic touchpad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
697     keybord good processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
698     awesome lapy light weight decent look                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
700     expectations nice laptop price worthy nice specifications                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
701     able laptoit passwordis new laptop weekand passwordhow way                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
702     disaster                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
703     feature great laptop fast performance looks much value key board quick smooth function little heavier hp surprises innovation product little lesser previous one spectre                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
704     fraud                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
705     excellent product users manual pen available                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
706     light small laptop easy original microsoft os easy upgrade pen use fine cell boot quick product key ms office seller activation key.long term                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
707     hours days weeks product technical stuff review helpful you.to honest scared hp good reputation review product detailed one diwali sale time purchase prepaid manner amazon cod products much return only replacement laptop yikes homework whole days basics laptop type ram processor battery strength lot one greatest value lowest price amazon laptop buying lot own various models one priorities).quality laptop silver textured lappy star keyboard issue few customers letters dark gray much contrast issue coz fast typist keyboard images keyboard review fast laptop initial setup few minutes lappy fast research scholar gaming tabs weeks months lappy gb ram tabs open star same way heavy usage few months usage rating accordingly.how battery % % videos browsing study stuff past hour % doable happy one coz particular specification related battery usage specifications battery mention tech friend upto hours regular browsing stars own jealousy laptop hp available touchscreen series same price claim hours battery life average upto max friend touchscreen reflective surface reflective super sensitive visible side angles peripheral position one stars laptops hours battery life available same price battery heavy screen only reason hesitant reflective surface screen absolute headaches eyes scared own reflection horror movie product matte screen screen skin guard screen specifications standard backlit screen available pleasant surprise matte screen glare low brightness laptop aesthetics greedy lcd whole screen fond black body screen tv laptop sense higher screen body ratio price this!sound sound better clear loud stars coz greedy girl louder better!ease windows tech friend windows coz hangs glad windows little nervous transition smooth easier access.ms office version phd scholar value willing version only office version version mini heart attack mins office version notification current version office home student version microsoft search feature star lappy week longer period time update case issue this.why online offline same price offer hp laptop same specifications gb ram free goodies headphones bags usb lights pendrives gb ram same price no brainer goodies inr new ram gb difference installation charges old processor least matter priorities goodies better processor aka speed.i issue laptop model keyboard number button icon inverted comma/ button malfunction hardware icons small matter mind traditional keyboard style hour okay o.o first place strange weird hour laptop mine magic customer support amazon replacement lengthy review                                                                                                                                                                                                                                                                                                                                                                      
708     worst laptop month use battery mark keyboard light max hrs speed avg brother student u r professional worst laptop hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
709     system ms office trial version                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
710     packing worst parcel packing box amazon inside hp product packing good laptop nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
711     month issues found.i                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
712     good normal personal use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
713     good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
714     laptop good little slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
715     good quality product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
716     laptop awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
717     value mony good laptop.laptop battary laptop performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
718     good performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
719     good perfect movie watching.sound good system slow first day tab long time system lot time hp customer support steps system check regular use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
720     display quality good slow processing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
721     value money purchase battery hours full hd display)boot time 05to sec critical updates boot time performance windows daily use students.didn't performance games.overall performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
722     good little bit slow performance time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
723     good product good battery time low                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
724     lap sep morng.worst delivery experience amazon laptop amazing better expectations.amd awesome processor i3 series.its good days performance smooth quick dell ryzen laptop pure graphical performance.if ur midrange gaming laptop best segment guys bad reviews confused.if u utilities full hardware software facilities thn ur gng this.ill additional informationpros:1 amd ryzen processor better multi thread performance intel i3good gaming2 performance highend game u upgrade ur ram gb pro3 m2 slot ssd4 min % battery inbuilt5 windows life time validity.6 dvd drive smooth light weight kg8 price segment.cons:1 hd display fhd2 battery last upto apprx heating little bit guy abt processor heating battery major issues amd.its default abt heating problems ryzen next level processor amd handling heat battery good other amd.laptop abt u                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
725     laptop great value money old laptop laptop 23k t regret many upgrade options available laptop performance laptop t other laptop nvme m.2 ssd.so laptop last few weeks upgrade issues gaming photoshop many tabs opened.then green m.2 gb ssd sata speed windows os ssd wd os clone tool available wd website significant improvement performance browsing photoshop cc speed gaming fps md computers rs 3500.if budget samsung evo samsung evo low boot time 10sec hdd 26sec ssd gta ssd loading time playable lowest graphics settings.then ram gb ram os adata gb ddr4 ram rs overall performance laptop ram dual channel.the laptop samsung m471a5244cb0-ctd ram capable laptop motherboard 2400mhz help hp forum computer expert compatible ram laptop chance compatibility other ram other adata ad4s2400j4g17-r sure laptop technician ram t support t loose money.i t support product.now gta average 30fps low settings photoshop editing lag filters other effects.pros amd ryzen performance goodcan nvme m.2 ssd samsung evo best)no issues.good windows homefast chargingcons battery life max preciseno keyboardspeakers averageram ssd slot accessible                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
726     work laptop nice battery life excellent picture slight hesitation loading graphics power gaming laptop excellent work horse businessalso % cashback laptop vqr.in/83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
727     ram gb ram specification ddr4 mhz sdram slots ram issue laptop easy hp laptops responsiveness laptop ram addition case further enhancement performance ssd m2 slot available need picture ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
728     pros vega graphicssupport gb m2 slot osall portsvalue money 22k discounts.con worst screen allvery slow hddexperience suggestion initial days performance ok mcafe windows defenderbest part addition ram m2 slotso 1st gb ram didn t performance improvement.then gb green sata sad os voila os 30k gb ram gb ssd tb hdd ryzen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
729     laptop notepad hours time laptop good amount time product hp amd ryzen laptop tb hdd windows home black/2.04 kg hours long battery false writer basic needs applications laptop computer ms word ms excel paint google chrome firefox browser movies youtube games battery hours other features fast fast data connection websites blink sound quality great laptop few songs awesome experience friends laptop battery good option                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
730     best thing laptop processor same i3 8th gen cheap price 3k extra gb ram module gb sufficient windows many laptop slow gb response more hang ups ssd wonders yet.edit ssd drive wd green gb m2 drive rs amazon speed difference apparent test results system boots secs secs responses better reading speeds good great go blue samsung evo expansive speeds range 500mb s green budget users satisfied performance price paid.edit many battery backup moderate brightness hours max wifi moderate works movies(not ultra resolution upto 1080p 720p backup hours word excel backup hours wifi lot battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
731     guys laptop good gb ram ssd slot lappy ssd amazon available rs version ssd lappy.i cash worth it.very .touch pad last full browsing good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
732     delivery quick good price amazon sale .the laptop good able laptop hand great average more .the processor amd ryzen u good comparable intel i3 7th gen .4 gb ram enough basic tasks gb planning more performance great additional bonus m2 slot ssd ssd ur tb hdd windows ssd magic speed .one thing laptop sound low other standards sound cracks high pitch voices ve drivers sound settings use noticeable laptop.if ur upgradable laptop good processor budget go sale k budget ssd atleast ram significant speed boost games                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
733     more month review hp model windows windows error acpi support contact bios vendor bios upto date vendor).for linux environment wifi seperate wifi adaptor ubuntu kali linux linux environment graphics 250+mb video ram worst part o adobe programs battery backup full movie % % camera quality good display lot friendly graphics driver problem supplier feedback bsod error applications graphics application problem manufacturer defect windows google much bloatware battery performance dark mode available personalization rating medium type users normal users                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
734     product mark amazon bcoz problem switch abd bateery backup worse new laptop abd battery backup hour                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
735     laptop update window updates charm superbb speed samsung evo ssd gb crucial ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
736     amazing laptop beautiful sleek stylish bulky performance fast remarkable battery backup commendable crystal clear display audio speaker rich bass hd clear sound.processor graphics magnificent overall hp wonderful product thanks hp side thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
737     price great laptop price hp . full stars better deal win10 festive sale great price performance new amd ryzen processors vega graphics match intel counterparts performance watt idea hp other manufacturers performance win10 bloatware ancient tb hdd little more gb sdd better stars sdd sdd hddthe worst screen t worst screen life year old vaio vgn n31m w awesome screen reason laptop display bit colour rbg model stars screen external monitor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
738     screen great .yet additional gb ram bloat ware firefox chrome explorer few tweaks laptop hanging battery hours recharging fast oct sale @ sbi card instant discount rs amazon cash price laptop better i3 laptops                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
739     laptop oct oct oct.so day delivery fine problem.next packaging poor plastic air bubbles wrapping laptop rain wet wooried laptop thanks hp laptop value fir money discounts best device range.sound bit low low ram additional gb ram beast.display heating issues satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
740     price range hp good budget laptop games regular basis ram gb better extra gb hanging issue others editing work auto cad game battle field bit problem battery doesnot more heavy heavy use hrs screen awesome hp service good inbuilt microsoft office microsoft awesome use heavy games office work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
741     laptop past months warranty period response amazon horrible service toll lines landline service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
742     gb nvme ssd gb ram good upgrade laptop seconds price point gaming decent fps modern combat battery backup upto hours hours other fine laptop light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
743     ryzen good windows ms office nice silver look attractive kb mouse display cheap angles good little bit 4th generation processors battery life average gb stick performance performance ssd m.2 bus overall processor better i3 7th generation gpu weak nvidia mx110.review months port good sata m.2 ssd laptop charm lags dual core ryzen laptop m.2 windows10 ssd tb internal hdd storage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
744     build quality category budget laptop notebook+no heating issues fingers heating issue other reviews purchase)+display color reproduction good+touchpad response good.+ excellent amazon customer service replacement week)cons:- first laptop issue battery backup 2hrs30mins replacement laptop amazon customer service 4hrs30mins backup way upto 13hrs battery backup"- system slower antivirus software                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
745     future generation ryzen processor advantageos vega graphics mhz ram ghz processors tb hdd slot available upgrade optane memory extra speed system value moneyconsdual corecheap plastic material                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
746     wise excellent wise extraordinary life time inbuilt window camera quality usual others competitors speed usual gb ram much fact specification overall value money good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
747     value money laptop hp deals 25k festival deals price slow minutes windows rivews suggestions additional gb ram gb ssd installation process youtube)now booting windows better good deal rest money ram ssd 30k laptop i5 notebooks thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
748     pros premium look lightweight ryzen lower pricecons battery removable liitle gb ram mcaffe ms office available days free trial                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
749     net light satisfied product.rest doubts amd one deal clincher festival price point.prostotal value money ports available dvd rwthe ryzen good problems that- comparable i5 imho videos games smoothly4 gb ram enough- less w10the key board touchpad convinient loud backup 2.5hrs cell onlyslow bootup- windows maybelot bloatware pay(ygwup)plain jane looksthe screen resolution poor- hdkeyboard easy night/ low lightsuggestions upgradego ssd -120 gb amazon boost gb replacement light behind!all loaptop web weekend office work games budget laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
750     laptop sis birthday battery dead experience laptop!!1.amd good light gaming editing browsing movies online backup:- hour battery backup.document editing video editing almost1:30 hr browsing hr last online movies hr movies battery life hr laptop hour battery backup.3:-display main con laptop ok type display sound output machine good dfx enhancer dfx enhancer sound output great.5:- performance:-over laptop ssd samsung evo evo better performance more gb more ram(1 extra ram slot available).i 8=16gb)crucial ram coz system dual channel ram.after upgrade laptop boot time minute sec gaming experience laptop good pubg cs fortnite farcry battlefield 1,rocket leage combat overall rating month laptop battery dead hp service complaint register 10th technician same excuse same time sir problem days more days pics hp product able services hyderabad metro city hp product guy good hp service example hp service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
751     laptop steal great indian sale discount return old laptop decent performance ram gb worth rupee able graphic intense game gta v lag frame drops student laptop browsing general usage sale better offer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
752     inspite ram gb speed machine laptop hour slow display new tab time problem lid open position everytime machine sleep mode battery amazon such junk laptop replacement window waste money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
753     laptop fine up.when laptop cpu fan full speed first moment screen black bios warranty hp website months warranty year seeler defective product disappointed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
754     harrowing time handling manufacturer seller problems warranty issues day product order seller information warranty days warranty update.battery poor display fine ram decent s l w gaming earlier reviews.hp customer care race worst performance race side ifb samsung morphy richards others                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
755     17th october same week faulty hp technitian un able fault legal steps                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
756     youtube channel trip days good laptop video reason days lot mall amazon budget good extra money it.good fast delivery amazon next day amazon prime laptop battery charging fast good normal work typing browsing editing software good slow course 28k laptop min video mins.one suggestion extra gb ram good sure latest editing software                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
757     24k lenovo z500 i5 dedicated graphics card laptop benchmark sure better choice i3 laptops time.4 gb ram enough lag free performance extra gb ram gb ssd programs photoshop android studio hdd least minute lenovo competition old i5 rig ryzen i5 dbattery backup hrs real world use hrs web browsing+programming+video playback range.the screen fhd price good gamer refresh rate use screen bad keyboard good good programmers.speakers decent good bad.m.2 slot big plus ssd thing it.ports plenty ports usb ports bit tight addition usb type c good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
758     review months use.brought great indian festival sale arch linux gnome 3.32pros:1 official windows home lifetime license2 battery backup good hrs continuous usage.3 speaker sound quality loudness good.4 apu compute intensive programs it.5 keys good noise.6 camera quality good.7 m.2 ssd sata disk.cons:1 ram gb windows gb standby.2 hard disk slow boot time long.3 f.16 bios update support several linux distros.4 new vega graphics hard several linux distro.in opinion laptop gaming limited vram.one boot time os ssd.games ram upgrade                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
759     laptop 22k old sony viao value 5.5k most laptop extra ram m.2 slots both.i claim battery life hours naive hours continuous use fair enough.day day apps ms word ppt pdf readers old sony slow apps.however only gripe horrendous display screen resolution angle pathetic hd stuffs laptop screen immersive reflective budget option ok option ssd ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
760     day day task upgrades ssd boot time.2 gb ram lag.with upgrades xps macbook.if requirement gaming videos ryzen vega better i3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
761     decent laptop month use point files week external hard disk laptop empty possible long life kind laptop os laptop problem week usual slow self                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
762     slow google chrome time unable windows laptop.even replacement money asus lenovo hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
763     complete laptop options good machine other laptops price.hardrive slow blevive years old harddrive worls.boot extreamy slow minute av hp product software preinstalled)copy process slow.good part m.2 slot hardrive os more times difference boot time own disk.second good thing memory slots gb memory small problem memory ram 2666mhz higher specification memory compatible memory.rest fine                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
764     laptop lot time problem processor on1 june warranty warranty period                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
765     laptop 14th 19th average speed delivery laptop top notch sky expectations best laptop cpu performance miles intel uhd 620/630 gpu performance.2-handles regular work video youtube stutter day day purpose.3-it well(at 720p gb ram gb ram low recent games gb ram adequate windows nowdays gaming good stutter free performance atleast extra gb ram.4-i emulation purpose good performance pcsx2 cemu cpu intensive intel pcsx2 cemu lowest settings intel gpu cemu retro games limited budget best budget option.5- very premium laptop black usb ports fast transfer m.2 port(which faster hdd storage os m.2 serious boost performance most budget laptop facility.8-metallic finish keyboard premium look.9-pretty loud speakers10-no heating(gets little warm full screen12-not heavy- kg considering inch screen.13-charger light weight important hour back.cons-1-pathetic webcam most laptop thing manufacturers good webcam nowdays megapixel cam mobiles good webcam laptop?2-not great angles screen screen reflective problem day time lots reflections distraction.3- problem unit usb ports tight usb cable etc.4-not soo great battery life description most economic way possible hours battery life better normal laptop less hrs battery life future optimization bios driver.5-wobbling screen hand.overall fantastic laptop price happy expectations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
766     couple weeks laptop good touch wood years mac hp first time windows impressed performance good thing ram tech geek way ram laptop lag way ryzen processor nice slick sure device drivers order sure device improvements good work gaming web development battery decent lightweight lappy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
767     less video ram adobe photoshop cc enough vram pure performance asphalt midrange games high range decent gaming performance battery life network heavy great indian festival sale rate awsome im sad vram issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
768     month good disk slower side wd double notch ssd gb kingston charm total 30k total inside picture help                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
769     laptop 24th dec christmas morning!i performance slower side gb ram surprised fast gb ram total better is.will green m.2 ssd os performance.having laptop cause box great good value money upgradeable other laptops category price point.amd rocks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
770     good looking laptop price ryzen onboard.also windows ms office included.performance wise acceptable price point day day tasks minimal hiccups.upgrading extra ram ssd better performance battery average okay price point hours moderate usage.display antiglare strain eyes headaches prolonged sessions.keyboard tactile placements keys pub g lite match playable buttery smooth performance ram gb help.dual speakers loud closed room volume headphone jack amazing.overall solid offering current price rs discount sales killer 6k ssd higher ram diwali time second thoughts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
771     high expectations good reviews terrible first thing display bad hd most.the pages pixelate display people eighties steve jobs such visioneries product stuck damn ok years days replacement criteria guys amazon second problem time keys keyboard hardware issue amazon drivers hp site hardware issue softwares support drivers improvement.my question amazon account more years amazon beginning india                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
772     reviews slow build compaq xp os mb ram image file millisecond one gb ram seconds xp os cd size less mb one security update gb days operating systems heavier slower heavy protection mechanisms computer user technical expert ram gb less laptop good buy battery upto hours mc afee anti virus month free year device option win lifetime validity"usb ports such simple factor unnoticed hp feedback complaints usb ports laptops years left side laptop usb ports otg sandisk flash drives same time first entry second flash drive usb ports matter concern millions users designers usb ports atleast inches.make sure option software microsoft store unauthorized program microsoft store more programs stall slow laptop background days level minutes time seconds system force power button laptop programs microsoft store system workable wrong mcafee anti virus program strong reason hp mcafee anti virus.there light indication laptop keyboard caps button mute button lap days people preoccupied absent minded lap screen display blank few minutes idle period right light glowing lap good reason light keyboard spacebar better laptops                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
773     worst laptop life.please new mins bad aspect good ms office use useless laptop amazon laptop drivers software amazon agents laptop slow laptop times day                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
774     first day review slow startup hour initial slowness apps settings usual.good timely delivery amazon.will use days days slowness lot time certain basic tasks ex below1 right click desktop new submenu seconds2 multiple browser tabs chrome system slow3 settings tab secs open.overall satisfied performancethe positive battery update intermittent disconnection issue -after time star option star disappointed hp 7th laptop life worst price less quality laptop slow minutes google chrome.not                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
775     useless laptop good tabs chrome low graphic trading charts good word processor word documents much time mistake budget money budget laptop better configuration more emi payback                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
776     laptop good dead slow ram g enogh.hp ram normal normal use disk write coach uninstallatio virus software laptop laptop day day upgrade gb wil help laptop normal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
777     product much a. gaming laptopand bright                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
778     blogger honest one jot first laptop last bad experience amd high speed many other positive points manufacturing issue noop laptop processesor worst screen lags hangs several minutes computer start menu sec 3rd party app freezes pc bluetooth device ready power button minutes pc cursor freez power button help amazon technicians hp technicians number points problems unnamed problems accross computer u points regret ryzen amd intel cores                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
779     worst product da drivers laptop slow major thing dot display major problem display quality bad touchpad hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
780     star minutes professional usage browser ms word videos music much time.upgrading grandpa age upgrading panel core duo starts work laptops endorse hrs battery big trap.such big international company hp brand market customer sake junks troubling other laptops range 15k satisfied valuable time junk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
781     disappointing hp laptop hard disk year laptop usage minimalthis product problem hard disk year purchase disappointing inner boards laptop old boards hardware repair person new brand device amazon laptop warranty november date purchase november warranty september hp company miss match warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
782     speed slow battery life short.amazon product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
783     registration hp site months warranty year product hp website months strange                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
784     good laptop budget useless ssd upgrade expansion hangs mild browsing light multitasking good thing ssd slot dual channel ram expansion update samsung evo rs adata ddr4 ram rs1599 amazon laptop breeze boot time sec minuetes loading time quick ram expansion ssd laptop useless weight best budget segment                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
785     most points importance ram gb laptop useful os gb noteworthy more asus laptop same day intel p battery life usage better price point same os gb ram hdd benefit laptop other laptop usage usual browsing movies bit office work ssh terminals c programming benefit gaming evident better crash.overall warranty support good hp support problem.i guess imperative warranty thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
786     laptop sale 22k discounts good value money product regular everyday use heavy computing gaming).mcafee lot laptops days lot cpu disk utilization laptop slow laggy mcafee alternative eset removable battery most conventional laptops unscrew entire base battery other components ram hdd battery user replaceable base panel few days.also ram unable exact ram spec bios speccy brand name base access hardware it.definitely better gigs ram ssd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
787     laptop diwali sale more month complete value money.amd ryzen processor better intel core i3.i ram gb processes fast gb ram performance good).another advantage availability ssd slot other laptop range provision.overall laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
788     beautiful product hp love device first day light weight specs front decent processor ryzen graphics driver games high end good laptop engineering students general purpose daily use slot m.2 drive future ram gb b 8gb product fantastic price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
789     laptop good gb ram better performance extra hdd slot fyi surprising laptop high fps dota good normal battery life(4 hrs normal weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
790     product need cheap best laptop product cheap worst product better laptops respective stores product actual price laptop old model e2 series money offline                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
791     happy machine fear heating issue processor multi little longer duration hopeful problem longer run.its performance equivalent i3 graphical performance medium load gaming i3 processor heating big time problem multi games movies videos long time heat experience weird problem much heat weird sound few minutes restarted.battery life good other hp machines claim larger efficient battery life page true                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
792     laptop great indian sale delivery ram gb win10 sluggish out.i games low settings.1 pubg mobile emulator fps csgo fifa fortnite gta rocket league fps 907.dota fps dirt rally 100this wellbattery fastand drains games long backupdisplay quality okayspeakers okoverall good package 22k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
793     good laptop price rupee amazon cashbacks final price rupees good ms office browsing good programming heavy editor visual studio light weight battery backup hours medium brightness gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
794     laptop cheap ryzen processor mid - range optimum laptop work daily use photoshop effects microsoft windows lagging more sodimm gb total work other work distributin threads work awesome cpu.as games good graphics part effects old laptop thankx hp thankx seller price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
795     good product good pricing sound quality high good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
796     laptop moderate gamer product rog level gaming killer gaming rig 26k bespoke custom pc fund thst able years few houses minecraft terraria trackpad responsive typing enjoyable.windows updates features better win7 it.overall solid starter typist laptop actual graphics card gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
797     handy light weight basic purposes laptop wouldn t recommend gaming ryzen multi - multiple applications simultaneously.out box warranty months hp warranty year.ms office trial version.decent battery life typical laptop display good value money buy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
798     guys days consecutive usage review.what product dislike.pros cons generic purpose learning education coding manual small businesses laptop sufficient terms build quality premium feeling glossier look jet black laptop.2 wide screen less bezels hepatic feeling videos youtube other social media bright colorful eye output movies.3 laptop apps lot apps free most usable necessary apps daily usage microsoft edge web browser fast responsive firefox much data.cons battery life less hours charge thing good charging time charge thanks fast charging.2 graphics ok material.3 many updates windows hotspot data hour.overall good stylish looking laptop.i budget less 30k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
799     excellent product range window decent gb ram upto tb hardisk processors nice light weight supercoo smart easy many products range decision product nice product amazon hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
800     better i5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
801     25k months issues ram slow price laptop worth it.i browsing other daily display nice big speakers loud video calls clear satisfied purchase.if worth section                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
802     value money laptop price range best normal use documentation inbuilt windows nice product thanx rs amazon balance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
803     weeki normal ms office little entertainment.pros- value money 27kgenuine win anglebattery charge fastscope upgrade u want(ram ssd video editing port dvd writergood normal student usecons- price thing keys possible price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
804     problem laptop terms usb device battery issue laptop other laptop payment additional warranty card                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
805     pros display goodspeaker output weightbattery backup okaygood hddcons heating issues lot time windowssuggestions windows gb ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
806     laptop slow issues first weeks case return window laptops restarts couple times day customer care team unable process hp warranty clause painful days+ required support product ardent hp fan products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
807     laptop great item keyboard design poor silver keys grey lettering invisible function keys miniscule font grey font regular designer holiday keyboard stars huge factor efficient usability light keyboard keys machine great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
808     recommendable slow aspects system.five minutes half hour approx                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
809     great laptop price features amazing.design good sleek processor good amazon sale good price value money happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
810     worst product lot iron box windows compatible month boot error battery less product intel store                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
811     product ok speaker day basic defect non booting laptop 1st amazon new speaker issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
812     worse laptop old acer d270 mini laptop intel atom processor piece garbage laptop tabs browser apps seconds dont buy ryzen slower intel atom processor vega graphic configuration useful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
813     screen quality good different angles straight view lights keypad low lit rooms slow ample ram memory space                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
814     product same ms office activation issues seller helpful issues happy product.thanks amazon thanks genuine original                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
815     update alright next update smooth butter step wise alterations laptop.1.uninstall mcafee windows defender capable normal threats malicious sites user case avg pretty light ram2 control center windows update updates restarts boot ups further update available hp assistant drivers laptop hours time necessary.3 task manager disable microsoft drive etc.4 task manager view tab refresh speed highest.5 start bar computer/ windows management processor speed % battery ac power.after laptop boot nice sec lag multiple windows videos heavy word/ excel rating star now11 grt pdt much comparison i3 ane i5 amazon engineer visit days wht days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
816     amd robust ryzen latest development speed screen spectacular rugged body high aesthetics                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
817     25k great build gud display decent processor light gaming bag only downside 25k great buy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
818     time charging high emblem razen radeon laptop previous customer matter first day time folder videos time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
819     best laptop 30k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
820     amazing laptop price range upgrades bonus fir general use one more gb ram games wanna play gta lags meduim graphics                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
821     pros nice design quality.speaker good.battery goodperformance extra ramcons;screen avgsuper slow ram upto 8gb.for steal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
822     processor slow wastage money time disappointed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
823     good laptop price range satisfied product thnk u amazon secured safe delivery product guys                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
824     honest review week better specifications 25k budget pros good battery backupfast charginggood audio effectshd screencons little bit laggycons matter laptop budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
825     laptopperformance speed lowit gta vice cityworst product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
826     worth money hd good simple gaming graphics wanna smooth experience good daily life office work end features                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
827     worst experience amazon laptop time hours charger laptop battery % lol product policy product product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
828     good product price purpose heavy gaming multi taskings browsing other activities heavy usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
829     seller number hp laptop hard drive help warranty period hp company data copy product key.it windows copy.seller copy serial key.so contact number                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
830     good build quality stylish design impressive price utter waste example chrome browser seconds long time long breaths laptop good laptop meditation practice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
831     minutes mins data many attempts word pad hp amazon people kunny trend amazonbutnow hp laptops simbony mobiles speed data yar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
832     slow processing headache video seconds thing laptop impossible                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
833     best value money laptop amd ryzen processor gb amd vega good machine photo editing gaming screen dull bright specs suits college student academic works                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
834     month battery good look laptop basic work media slow lap                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
835     processor slow ram slot gb ram total gb ram speed ok                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
836     laptop slow seconds app open windows explorer etc.browsing slow ms excel slow.i windows updates laptop multiple times fix issue won't product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
837     slow green ssd gb additional gb ram fast boot time os hdd acronics software                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
838     everytime pop boot device 1st laptop worst experience boot disk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
839     awesome laptop budget.the laptop enough battery life average worried sound quality good design impressive upgradation future better performance enough speed default configuration.don't i3 7th gen processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
840     windows minuteswait logon screen minafter login icons wifi connectivities browser- seconds                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
841     worst product july lots issues n days screen black helpless.customer care response poor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
842     brilliant product extra set ram better performance first order day performance gift product delay prime membership same seller delivery dates                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
843     laptop fine boot issues hdd)also hdd poor quality ssd laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
844     battery good bad screen antiglare eyes buy date online warranty support software updates                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
845     amazon summer sale card discount).nice product range.suitable daily usage.if budget 30k this.better intel i3 7th bad thing full hd price one full hd display                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
846     best laptop good choice price point movies n half hours                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
847     product time screen blank many times additional apps product now.i'm product last months waste                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
848     months screen white patches hp warranty kind issues normal hp yrs warranty it?dont such products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
849     bad laptop worse laptop life minutes windows application start minutes mouse button horrible pathetic laptop hp big brand substandard product range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
850     display lap 1st time issue display lap nd new month same problem display model worst hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
851     dear friends don't leptop hp laptop bcz leptop month kan slow kind service last month contact                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
852     personalcannot heavy loads video editing high end gamingwe casual movie ms office purposes value moneystill problem product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
853     office use games gta v                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
854     amazon side bad bad product hp laptop start problem just15 day bad 2nd hand product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
855     month complaints bit slow times other great budget laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
856     quality wise fine performance bad output i'm tab time satisfy performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
857     laptop microsoft windows os . os manually hp default year warranty laptop bad service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
858     9th june right click charger charger wrost experience amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
859     nice worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
860     hdd problem warranty hdd additional gb crucial ddr4 ram excellent display quality average battery backup hours medium demanding games playable high set.good autocad daily tasks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
861     best laptop range 25k speed new ryzen processor powerful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
862     biggest mistake product lenovo other brand refund request worst laptop employees usage pieces disappointed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
863     time apps normal overall nice product range price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
864     battery backup hour description many times amazon product value money boot time laptop look body poor rs-24990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
865     worth buying display good sound quality good amazon choice perfect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
866     design ok lightweight bt slow laptop atleast particular peice bt dissatisfied performance good day day usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
867     pathetic product hp dustbin usable crap laptop hp kinds laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
868     value money nice performance gb ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
869     good reviews system slow os weeks lot issues better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
870     processor ok battery hrs.i more battery backup                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
871     dam slow worst product amazon first time amazon reviews                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
872     laptop operation slow replacment options.fake information description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
873     power button able fan sound high silencer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
874     nice product other price more                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
875     25k diwali sale nice laptop casual little bit heavy usage face problem battery main highlight issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
876     price decent laptop ram minimum gb laptop slow.upgraded crucial gb ddr4 ram performance better.suitable everyday laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
877     worst product life 22k pathetic slow laptop laptop slow able                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
878     performance decent daily office task light little bit slow hp i3 same range better mine laptop slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
879     good battery longer hours screen quality nice.system improvement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
880     superb quality product good images hours prime customer functions specifications same site best buy summer sale                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
881     more hrs battery life.slow processing speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
882     hours battery life windows updates first try web browsing fast other applications slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
883     laptop screen discoloration manufacturing defect amazon replacement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
884     nice product ryzen better intel core i3 7th generation amd vega graphics battery maximum run hours full charge mild browsing.sound quality different ok.display quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
885     laptop opening laptop wifi connectivity issue post network reset update purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
886     % discount gb ddr4 ram product ready 25k rupees intel i5 performance same spec new ryzen cpu products worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
887     computer days months amount effort hp service center hp problem business laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
888     good product price use basic work students                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
889     slow offen hangingi din user manual                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
890     excellent product hp gb gb ram laptop extra ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
891     battery life hours pathetic more worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
892     nyc laptop value money bcoz maine isko ek mahina use krne ke baad bol raha hu maine isko tha worth next month ismay gb ssd gb ram bhi upgrade karungaaa nyc perfornance battery life nyc product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
893     delivery good day display quality average battery performance worst movie fastly.processor performance good quick accessing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
894     product properly.just minutes bottom operating system single photos data store product third class product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
895     good basic needs internet surfing movies good buy price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
896     best laptop history hp kind laptop 21k performance little slower                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
897     laptop good slow speed professional games money 28k more m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
898     worst laptop don t                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
899     random office work okey                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
900     bakwaas hai ji                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
901     laptop slow ishtar amd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
902     price loptop asphalt air bone game frame drops problem pubg multiple tasks memory                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
903     product many times disk % memory first poor experience amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
904     poor performance several time new product manufacturing defect poor value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
905     useles product lot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
906     lot patience time laptop dead slow times lot time waste money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
907     defect adapter replacement replacement laptop local packing hp box amazon packaging product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
908     good laptop price diwali cheep configuration happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
909     plain language movie song good c++ programmings                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
910     best laptop good looks great battery nice great fast delivery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
911     best students normal use laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
912     slow processor price less intel processor 3k intel type life time headack                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
913     seller sensible laptop sleeve bag laptop good price mere expenditure 600rs big loss seller                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
914     nice laptop amazing price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
915     days mark condition good laptop deadslow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
916     amazing deal battery backup- hoursdisplay goodperformance smoothin build windows weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
917     product month warranty year warranty issue hp store wrong invoice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
918     good day day use mild editing programming work ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
919     delivery fast first day display problem slow laptop minimum overall bad experience laptop worst laptop basic use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
920     good college students home use movies office work heavy games bit laggy price performance ratio great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
921     satisfied purchase only issue quality purpose                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
922     acer aspire v5 intel i3 laptop pentium gold processor same lesser l3 cache memory mb heating other issues ssd requirement day day browsing videos good laptop price.good price old laptop card discount icici diwali sale                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
923     few days love product light large fonts keypad windows easy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
924     initial impression excellent light weight thin friendly.super fast booting ssd laptop last long.lets corse time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
925     item super fast delivery laptop few weeks use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
926     fast performancewosrt display                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
928     great product great price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
929     good buy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
930     slim light weight traveling.good battery time min office best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
931     fast good regular office home work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
932     laptop decent display boots price microsoft office listing trial version vendor microsoft office available hints trial version.when amazon customer support product trial user answer products user answers appropriate2 license complete cause deceptive advertisements vendor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
933     today basic set original windows ms office 2019(life time).system terms booting.those ms office days ms office own outlook gmail yahoo side bottom search box type excel excel.3 outlook username password having.4 life time office life time daysystem superb fast terms ms office gc ie system bios lag speed first time updatewhen right bottom hp page updates important update bios bluetooth lan system slow update                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
934     months time hard disk off.laptop slow expense new hard disk.amazon larger period return window sensitive products loss laptop seller.better offline stores croma exclusive dealer brand                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
935     gb ram gb ssd homems office home student lifetime word excel pp onenote ms office month above features good price coding browsingthe boot time fast thanks ssd space unnecessary files pcvery lightweightbattery backup goodvideo quality good graphicsnot great gamingmy verdict pc coding browsing stuff one best budget- lags good external drive hdd stuff movies songs screen quality decentbattery life goodlight weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
936     laptop sleek lightweight product startup post slow windows gb ram unlocking laptop post startup mins slow laptop fine browsing more work heavy excel sheets games web pages time lag seconds sound quality better other laptops price fine product browsing more                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
937     reviews laptop amazon return step solution laptop laptop tad bit speed first generation computers world.now laptop.i amazon inr utter disappointment product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
938     superb laptop win10 ms office gb ram/ gb ssd quick boot lag dropbox gb space free drive gb space extended warranty amazson optional pendrive gb documents exchange rs.23,236 rs.4760 old sony viao sbi card discount happy purchase good screen battery backup miss backlit keyboard great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
939     hp laptop inch light weight genuine softwares perfect combination search decent laptop.after couple days working pros:1 windows ms office genuine2 light weight handy island keys keyboard lot typing daily core smoothly4 alphabets broader font size5 decent display webcam battery life hcons:1 smokey gray colour lappy hopeless same grounds jet black excellent option unavailable moment amazon present configuration2 performance bit slower side configuration addition gb ram serious problem3 hardware light weight fragile low quality4 heavy gamersverdict value money stars design lappy hardware perfect companion cost                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
940     first days mouse laptop point hp quality laptop screen degree original e high high discount actual price happy quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
941     hp products service waste faulty part days further updates experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
942     laptop months horrible beginning.the speed slow secs small size file hp much help screen session.i friend laptop speed unwanted unnecessary software mcafee windows defender unwanted game software fragmentation order space holes memory.it able software quick system performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
943     best laptop price range confusion ms office trail version laptop days ms office student version life time free.just                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
944     thing ad microsoft office free silly month trial worth better options available lifetime mso order return                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
945     software professional product light weight faster booting time camera quality poor days own updating bios hp reasons same time os windows surprise features mobile instant basis several attempts surprising windows commercial nature cunning features reasons contact wi fi feature regular basis default one ms office microsoft computer friends cd fast light jet black colour attractive day good condition bag free                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
946     nice laptop boots less quality last more hours medium brightness average usage sound moneycons:-cheap plastic body scared anywhere.-in less month print keys poor quality print.-webcam quality pathetic vga camera adapter heavy % weight laptop purpose portability                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
947     poor qualitybuild quality poor poor plastickeyboard softperformance brand poorif 27k 29k laptop higher range laptop good full hd display ips best.if normal work lower range less ram keyboard display jerk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
948     pro exchange lappy i3 7th gen gb ssd gb ram original win10 ms offic weight kg price worthy purchase looks laptop good.cons poor web cam screen quality good avg backlight keyboard speaker bass much.overall price hardware specs m happy photoshop video editor good student office people asus x200ma hp configuration hp boots                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
949     hours laptop bit handy cool sleek beautiful light battery charges quick tons good things gb ssd gb ram main highlights only thing better screen under big deal hd+ display good enough.thumbs hp amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
950     new laptop day date purchase slow performance hp many times hp thry window rs cloud recovery service warranty wtf worst experience hp problem 1st second day other wise u irritated hp service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
951     laptop reason ms office procedure ms office hp customer care remote connection it.its weeks laptop hp customer min+ duration ms office yet.terrible experience brand new laptop hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
952     thin light weight laptop good performance good windows work set automatic easy display great price point acceptable good buy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
953     price best ssd laptop laptop hdd naive tons storage external drive screen decent better full hd display battery life poor gaming session battery low laptop light comfortable camera poor least                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
954     display good sound quality superb few seconds boot quick ssd biggest plus point battery life requirements work entertainment purpose go product price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
955     excellent value money fast boot thanks ssd i3 processor gb ram gb ssd win os ms office home student great deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
956     unbelievable laptop price point match available sleek light weight point large sum money other brand best product price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
957     cons day old laptop signature slow processing more time usual pc feed input.display quality i m bit worried display quality gentle press back display display merge color spot pressed).pros life quiet good upto hours hoursspeaker quality goodlight weight n compact sizei star days usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
958     quality great super thin laptop day andpros ssd m.2 nvme pcie type8 gb ram ddr4core i3 7th gen mb cache3 cell batterysuper thin body lightweightcons fingerprint mandatory everyone)no type c port few people type c c cable common)lookwise simple.recommend                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
959     product i3 laptop numbers speed poor security window visible window screen products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
960     laptop movies day day work good fast window gb ram 256ssd stuff heavy usage simple                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
961     new model hp deal great indian festival issues warranty windows office original laptop boots ssd laptop delicate purposes office work movies youtube music perfect choice normal hdd laptops slower mechanical functionality.i review days usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
962     model waste money much expectation things good one light weight other battery life                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
963     laptop good battery life average hours light laptop premium processing good ideal casual use problem web browsing movies documents good one course value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
964     lots positive negative reviews one battery good screen display good easy small size lightweight ssd satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
965     sysytem little bit slow reboot tine time.body quality soft firm dell.one care battery life good sound good.but price product ok                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
966     good product slow ram gb slot lots issues slowness hp technician look                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
967     nice laptop.all functions available ms office lifetime validity sound quality superb hp dell laptop.simple start home use normal routine work best laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
968     microsoft office excel word powerpoint)is lifetime valid office first- microsoft outlook login only trial version.screen average speed excellent boots seconds light weight highlight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
969     good product thin lightweight battery backup good review product more weeks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
970     awesome deal amazon great indian sale laptop compact awesome performance price point inclusion ssd attraction boot time secs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
971     ms office lifetime available orginal i.e full security)portable light weight average screen quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
972     light weight friendly laptop good memory space professionals basic applications such ms office system college friendly smooth keyboard video quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
973     slow regular student work t huge applications hp service bad displays site warranty service center don t product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
974     laptop slow bad laptop life time limit money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
975     laptop multiple programs product perfect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
976     seller doest invoice packet authenticity product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
977     excellent entry level notebook ssd faster sata build okay                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
978     charger laptop helpline complain service available website hp response                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
979     pros light weight good battery life gb ram tb hddcons processor speed slower expected.remark value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
980     system slow lot time boot.this basic usage laptop worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
981     product mso hp online session same thing product mso installed lot issues service team dell better service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
982     vert worst service hp replacement bad bad bad hp qty least bother frm retailpc slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
983     light weight stylish good battery life issue little bit slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
984     new hp laptop slow applications slow years ram gb application word slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
985     gb ram ssd hd results laptop fast light weight easy convenient frequent travellers speakers good price range.value money 28k sbi card discount                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
986     light weight laptop routine use windows ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
987     light weight portable laptopsince ssd technology system lag multiple applications5 hrs battery life multi processing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
988     premium handy light weight screen fabulous mouse pad soft touch love machine opt office h&s extra laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
989     product good value money reasonable price.however vendor didn t ms office home edition license key vendor same earliest                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
990     days laptop local repair laptop amazon product igot defects photo laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
991     happy performance laptop lightweight good speed worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
992     angles worst.option nvme ssd good like.overall performance good better price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
993     charger system slow battery backupnot technician money laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
994     price good real lightweight decent battery screen good option option basic computing browsing needs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
995     good laptop gb ram ssd fast smoother hd display battery backup upto hrs good students gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
996     battery goodsystem many times                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
997     good buy requirement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
998     good pieceram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
999     screen good laptop hr talk time becouse light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1000    faster kid fine                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1001    amazon promotion biggest mistake laptop stuck able amazon able product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1002    shorter battery life cheap plastic build quality bloatware downside low price comfortable weight upside                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1003    screen quality let fast responsive happy purchase apps much hiccups                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1004    laptop basic ms office browsing laptop slow month old disappointed product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1005    nice product excellent performance more hard drive drives single drive                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1006    damaged product corner laptop laptop performance speed okay tools long time processing satisfied laptop performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1007    performance good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1008    laptop last days look average other features good little slow value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1009    light compact pc office college journey beginners ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1010    overall performance good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1011    home users original windows office student edition                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1012    thin light weight laptop good configuration need useful frequent traveller worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1013    good daily use students professors basic use thin light weight good battery life amazon fast delivery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1014    great product other laptop price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1015    machine licensed microsoft office student version office office product key                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1016    laptop battery performance super                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1017    initial review worth penny light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1018    stylish sleek elegant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1019    amazig laptop boot plastic quality better screen quality average                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1020    laptop awesome category                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1021    screen quality good hd dispaly performance good light weight premium look one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1022    slow browser will.take minute file more minute                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1023    little bit slow new laptop overall good product light easy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1024    product screen worst                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1025    day problem performance fast boot lag apps                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1026    screen quality expectedbattery onlylight weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1027    good offer need good easy requirement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1028    k. light weight nd good battery life last atleast hrs usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1029    light weight good configuration price range good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1030    problem amazon customer service soo happy product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1031    screen quality good weight light                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1032    screen quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1033    thoda chota h theek h                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1034    good product expectations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1035    laptop good sleek light weight good battery fast perfomance original windows ms office best 30k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1036    ms office system activation code ms office activation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1037    nice buy normal use cases one free office subscription satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1038    bad performance slow device                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1039    product good condition month adapter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1040    good laptop connectivity issue wifi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1041    hp brand good quick delivery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1042    slow suitable professionals                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1043    problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1044    light weight office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1045    screen quality worst laptop compact design much stylish good ssd lot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1046    place laptop new vertion slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1047    happy specifications requirements awesome machine super design                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1048    east west leptop best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1049    excellent screen light weight easy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1050    good product low budget great performance only battery life                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1051    best offer amazon best screen quality battery backup light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1052    best price discount sale                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1053    laptop slow booting slow multiple apps                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1054    hp same worth trust                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1055    nice product easy good battery life worth price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1056    nice laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1057    quality laptop bad bad experience amazon don t laptops amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1058    excellence performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1059    nice laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1060    screen quality goodbattery life satisfactory                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1061    30k 28k screen quality better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1062    excellent product memory gb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1063    great deal aspects amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1064    good laptop.easy weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1065    fine harddisk storage(256 gb ssd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1066    slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1067    screen quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1068    product good seller                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1069    value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1070    system slow times difficult office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1071    itfragile good fast product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1072    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1073    u hp performance butter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1074    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1075    good laptop genuine windows ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1076    seller invoice owner manual laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1077    product good normal home use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1078    invoice product same missingoverall great deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1079    overall good performance worthy price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1080    excellent product quick delivery thanks amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1081    good design speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1082    awesome product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1083    excellent product expectations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1084    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1085    resused product dilevered screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1086    great product students best budget laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1087    nice prodduct value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1088    lots hardware issues product use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1089    touchpad slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1090    regular office works worthy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1091    slow performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1092    machine slow expectation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1093    great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1094    word worst laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1095    performance mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1096    internet slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1097    slowest laptop humanity                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1098    key buttons responsive horrible                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1099    hangs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1100    design performance good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1101    light good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1103    cd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1104    system little bit slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1105    exclinent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1106    good choice value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1107    amazing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1108    bad option                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1109    warranty document                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1111    good product budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1112    excellent laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1113    thirdclass quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1114    good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1115    lightest laptop hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1116    best budget laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1117    scree quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1118    picture quality poor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1119    costly                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1120    hp laptop family notebook dimensions notebook light weight dvd player non replaceable li battery good ghz processor gb ram windows home opening closing time normal hp drivers window update box notebook power chord other warranty hp website.i office pro smooth display good angles sound ok good key board pad worth price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1121    good product description chrome browser game speed slow speed processor ghz speed slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1122    product good excellent laptop wise.unhappy amazon facility delivery service important laptop discription seller                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1123    mid price range least acceptable speed speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1124    good yar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1125    good budget18720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1126    product purpose tabs same time become battery removable dvd port whole motherboard                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1127    good cashback hdfc debit cards cashback offer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1128    satisfied laptop.speed good body material                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1129    lapi good requirements warranty card bro                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1130    issues laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1131    time clock battery boxterrible support                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1132    good warranty card                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1133    light weight notebook hp.overall performance good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1134    satisfied products invoice bill waranty card                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1135    nice product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1136    awesome product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1137    excellent laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1138    ms office work slow browsing speed good time google chromememory problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1139    speed slow?but whyvery bad leptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1140    wrost creatng problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1141    best product best price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1142    mouse laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1143    replacements refunds product.battery backup poor money waste hp laptop showroom                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1144    quality low                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1145    usable compelling little slow laptops mechanical hard drive ssd windows linux mint speed performance boost                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1146    problems hdd.i warranty.and components cheap quality.sort use laptoo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1147    laptop nice problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1148    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1149    nice performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1150    review hp 434tx i3 7th gen . hp laptop hell customer care support worst extension warranty rupee free headphone support team home warranty call rain stupid                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1151    bluetooth devices                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1152    faulty display keyboard impressions brand new laptop screen unbelievable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1153    laptop hp product dealers 53k week laptop premium thanks gb ssd backlight keyboard programming movies stuff complaint                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1154    prosboot time fast.consthere heating issues laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1155    product delivery service amazon hp amazon amazon product week customer support guys product proper info products amazon product delivery time hectic laptop data feature windows home edition bit locker device encryption)contacted microsoft issue contact hp hp customer care workingbattery life laptop overheatingwindows home edition more features poor product quality51k amazon such wrong products fake sellersamazon cons product delivery timecustomer supportdelivery guy contact details wrongproduct genuineservicehp cons battery lifeover heatwindows os home editiondisk encryptionpoor quality product lpm                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1156    first time laptop display defective keyboard imprints it.otherwise laptop perfect ever.pros.1)light weight compact premium look.2 amazing keyboard.3)good display4)ssd+hdd+8 gb ram superfast useful data.5)decent speaker rare find.cons.1 low battery life.2 quickly.i academics purchase faulty display new one bad experience assignment time laptop hand                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1157    bad experience laptop laptop second time replacement first same issue keyboard marks screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1158    great product hp 1k less price hp website free laptop bag delivery quick blue laptop ssd experience smooth keyboard cheap shoddy buttons chiclet keyboard clicky few display great week.will post complete review month best non - gaming laptop research 55k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1159    don t screen first day hours usage defective laptops areas screen blank                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1160    weeks regular use great performer fast speed smooth performance beautiful slim light silver shade bright battery life good.got cheaper exchange old samsung laptop fast deal dealer.thank amazon deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1161    good one fast processor good screen up/ 20sec good full version microsoft error due installtn software.took time review sure tht                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1162    good pros light weight keyboard good screen resolution good ssd fast cons screen angle less degree personal view full black laptop model model full black available                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1163    fast screen quality best good battery life laptop educational business purpose light gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1164    laptop study purpose good thing consideration look adorable hrs battery life good sound quality intel i-5 processor window home addition.so thing good yaa laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1165    little bit tension reviews product keyboard mark same situation perfect one packet product bill packet satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1166    product disgusting service amazon.within months buttons impression screen.replacement letter hp amazon people such costly product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1167    good product timely delivery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1168    laptop light work big battery life hours laptop heating issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1169    battery life ideal hours hours workloadfor gaming ok small graphics quality star                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1170    performance good good laptop purpose.but screen keyboard marks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1171    moment more usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1172    good issues month battery more hrs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1173    good quality laptop son mba use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1174    permanent keypad impression screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1175    good laptop descent battery hdd speed light weight laptop screen resolution good hd screen.i satisfied product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1176    week                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1177    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1178    laptop amazon best price super cool laptop time good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1179    gaming light handy office purpose work ssd fast booting                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1180    good buy specs great light                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1181    good laptop programing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1182    speed good cursor many times                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1183    great laptop requisite features light                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1184    laptop prenis office home student edition                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1185    light weight fast attractive                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1186    good product months review                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1187    good portable light fast                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1188    good office use light weight gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1189    nice product good speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1190    sleek light laptop good home use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1191    amazing buy quick delivery amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1192    excellent product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1193    mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1194    great product students                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1195    features good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1196    battery good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1197    month usage laptop storevery good developersthin lightnice keyboard backlight.sharp crisp display ample sound noisy dvd drive std usb usb type c rj45 card reader jack port office fast smooth lightning speed boot.comes ms office home student access word powerpoint excel onenote.screen degree 360i more usage developer tools browsing movies ide dozen chrome tabs local database instance try android studio previous i3 machines gb ram usage one able windows updates couple updates windows driver hp updates issues updates                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1198    perfect lap preference specification ssd hdd adavantage model price rate value money price ur hp store price amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1199    description office home student same microsoft account activation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1200    laptop good normal use game lover graphics card ssd hdd combination boot time speed other laptop youtube channel tech waalaa                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1201    product available hp store                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1202    awsmmmm                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1203    light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1204    best laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1205    value money satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1206    speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1207    amazing.just awesome.happy buyer battery good laptop excellentgo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1208    stars time ine star performance system bad gb ram gen tooo slow os years refresh screens laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1209    beginning computer cursor stuck minute logo hp screen computer start cycle couple times window windows options advanced troubleshooting computer windows day1 windows screen flickering.2 specifications ms office subscription only 30days.3 graphics poor full hd computer.4 trust electronic products amazon option return exchange free troubleshooting service.even extended warranty time service few days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1210    hp 0026tu excellent budget laptop good quality performance battery life.battery avg quality- good quality below)performance- goodboot time minutes lessbuild quality- bettercons ms office original version trail version days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1211    lap sooper smooth initial setup lag issue other people review satisfied battery life y star best available market price range days enquiries web searches disappointed thanks amazone hp support genuine lappy review months more star star overall pefomance awesome problem new folder ore few sec system slow uninstall useless pre - installed softwares mcafee antivirus free other antivirus problem sooper smooth lappy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1212    bad experience system slow bigger performance gb replacement amazon service centre same day delivery service centre                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1213    laptop ssd+hdd option upgrade option ssd gb ram laptop gb ram gb ssd os tb storage laptop work awesome purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1214    frills laptop charm good keypad overall ticks boxes laptop price wagonr honda city higher period                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1215    good packing amazon neat safe month good product battery sound quality satisfactory                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1216    item 28th january argent work return time product keys slow process                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1217    best laptop budget range good battery light weight photoshop image ready lag gb varient performance lenovo g560 model gb ram more conclusion laptop budget 35k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1218    well far.fast boot up.awesome hd display.smooth great performance.nice keyboard.good quality sound.cons1 touchpad disable button driver manager disable option present.2 partition windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1219    hp guys delivery retailer amazon people product new product laptop issues months service battery issues whole day hour.please product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1220    ms office pre installed amazom show installed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1221    good laptop reasonable price laptop pre - installed trial version mcafee mcafee antivirus comodo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1222    leptop 34k freedom sale gb ssd gb ram intel hd graphics laptops l awesome problem partitions c                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1223    laptop days packaging delivery ordinary packaging manual laptop.pro's:1.build quality good light sound quality good audible empty room easily.4.8 gb ram version less time fast.cons:1.display quality average colors clear.2 ms office windows product key few days bad ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1224    laptop today issues amazing sound quality good display better keyboard priority well laptop heavy gamer laptop serious coding great everyday use office drawback keyboard quality mouse smoothness better bad good budget laptop everyday use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1225    battery life good good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1226    home use private use perfect special offer best price town bomb good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1227    nice laptop i3 processor laptop gb ram day day tasks gaming bad apps os slow normal use great laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1228    display display quality good battery life hours speed prosser good laptop good students office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1229    worst product don t beginners t veryyyyyyy slow hv exchange policy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1230    good processing speed documents laptop boot second second star less average look                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1231    good laptop bit large topmost keys keyboard small fact keyboard lots space larger size keysthe cover laptop fingerprint marks smudgesms office student version negatives laptop good routine work purpose                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1232    useless amazon value money product activation key hp support                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1233    review week.battery life good hours projects movies.sound quality good.i vlc videos                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1234    internet hp network adapter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1235    excellent battery backup                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1236    happy product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1237    review day use second applications hanging battery life drawback ms office day trial version price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1238    slow win                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1239    windows office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1240    good performance software development august software engineers gb gb ssd ease development                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1241    keypad days purchase bad quality hp worst seller service experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1242    wrong much time power                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1243    good laptop drive gb.windows product key me.how os                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1244    good product reasonable price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1245    best little heavy weight slow other thing issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1246    smooth 7th gen gb ram old gb ram quadcore downgrade sounds only point upgradeable less battery life mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1247    good quality laptop thing microsoft office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1248    defective amazon hp item period replacement technician amazon hp problem complain hp technician laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1249    good metallic body coating little bit slow system date.battery okay little bit heavier.overall good normal stuffs entertainment                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1250    proper laptop good sound effects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1251    good quality product excellent battery life                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1252    slow heavy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1253    happy few thousands more macbook air disappointed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1254    shipping box good condition inside laptop laptop charger found.so far performance good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1255    laptop good little bit slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1256    premium product value money software hp excellent service amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1257    laptop black spot screen months.it difficult laptop now.it cheap quality laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1258    bad product yesterday today blackout                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1259    stunning laptop boots asap hd videos long time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1260    good sleek design speed display much overall stars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1261    best students problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1262    fast good battery life good speakers gb ram version lot hassel extra cost worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1263    laptop week befor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1264    happy lappy slow manner                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1265    camera quality sound quality nd processor quality low overall gud                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1266    product good ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1267    battery life good upto movies straight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1268    moderate use amazing battery life full hd screen awesome sound heavy gaming gb ram smooth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1269    budget laptophp best othergood qualitybetter performance other laptop functionality reliability                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1270    perfect laptop % genuine product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1271    emi cost % interest cost higher actual cost                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1272    microsoft office trial version able microsoft office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1273    average product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1274    laptop bag product extra accessories                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1275    personal use daughters college use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1277    gud product price side numbers keys num lock key                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1278    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1279    battery life good nd bt microsoft store                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1280    nice look                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1281    nice fast laptop ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1282    old generation old processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1283    good lappi worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1284    product good speed slow delhivery courier service good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1285    nice brand hp product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1286    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1287    product good hdd bit slow ram gb disability okay                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1288    display quality bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1289    thing good expectations nice laptop good quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1290    good normal use.keyboard wide useful typing slow windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1291    super                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1292    nice good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1293    more hour eyes                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1294    best laptop students battery backup good gameplay good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1295    laptop service good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1296    laptop upset amazon service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1297    laptop.screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1298    good laptop expectation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1299    best price range 40k overall good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1300    nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1301    descent purchase price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1302    good laptop good configuration low price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1303    slow process hp laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1304    product good price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1305    thanks amazon superb quality product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1306    good os                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1307    worst                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1308    good packaging nice buy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1309    laptop slow product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1310    beautiful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1311    good product value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1312    hour battery backup perfect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1313    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1314    best product price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1315    nice excellent product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1316    audio problem headphones                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1317    battery removal problem superb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1318    good battery life problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1319    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1320    ssd hard disk best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1321    bad product hp laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1322    good product value worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1323    good product satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1324    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1326    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1327    slow processing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1328    good product maza aa gaya                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1329    good purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1330    good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1331    sound quality optimum                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1332    product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1333    product good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1334    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1335    slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1336    superb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1337    guyz review days confused value satisfied lappy battery life hours more sound good nd weight killer ossam product short                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1338    worst product hp warranty period year year times customer care.worst customer care service same.customer service executive speed system further.my experience lenevo acer good hp laptop hp products future sure                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1339    model ssd tb hard disk gb ram????please                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1340    bad product note book 25.06.2019 mother board porblems hp care problems date service engineer service.so money.dear sir friends buy items                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1341    nice laptop last months file time sound quality good display good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1342    present problem easy beautiful look customer happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1343    month dell hp.i m software dev profession laptop slow speed nd one slow performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1344    good good laptop students practice purpose amzone less rate                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1345    product screen nice easy best product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1346    money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1347    hp laptop amazon worth d product excellent condition.am satisfied.thank                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1348    worth penny                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1349    warranty guaranty box                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1350    slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1351    best choice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1353    technician laptop hp toll free unable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1354    proper bill                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1355    good product less                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1356    good work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1357    satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1358    ms office month details configuration                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1359    available other online stores model touchscreen device couple weeks observations normal user point view.first specs user specifications intel core i3 processor tb storage gb ddr-4 # intel graphics inch hd display resolution 41whr battery os.following user experience build quality good build quality price # top surface finish good grip # speakers good output kg moderate weight size good.display hd screen resolution great # colours punchy # contrast average # display upto expectations.keyboard speakers # keyboard # feedback keyboard good numpad placement pf speakers good # enough sound output # performance average.battery performance average battery # full charge hours battery backup # hours medium brightness heavy multitasking hours backup # overall battery backup average.system performance # problems laptop surfing internet # small medium games fingerprint scanner # 1x usb usb ports handy combination # average laptop.verdict good device price 25k ups device 7th gen processor decent storage hp brand reliability fingerprint sensor backlit keyboard decent battery backup better graphics better display resolution deal available 25k few more better device 30k worth buying                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1360    honest review months.i digital marketer profession machine heavy excel file data work laptop good level file mails ppt concerned best laptop price range.i issue mouse pad mouse model basic touchpad multi touch good.thanks reading helps.also % cashback vqr                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1361    best looks slim light weight display awesome performance specifications good beauty much research lenovo 330s dell latitude inch series better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1362    overall good package pros light weight decent battery backup good looking smoke grey colour good build quality cons inbuilt battery non removableglossy display mat display good glossy reflection there)display quality uptomarksound quality averagesystem little laggy much                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1363    nice product range.this lappy awesome .actual price instant discount sbi card amazon pay balance final price great deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1364    laptop month amazon great indian festival product light weight sound good battery backup good important performance horrible.i've year old hp laptop 3rd gen i5 processor 7th gen i3 processor good old one.the system lot time fresh install windows recovery media bit faulty product late time last date return days stuck super slow laptop worst thing ram slot gb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1365    product stuck 30k.system hangs second support                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1366    lappy wife amazon sale discounts good price sleek slim light screen display sound good battery life good hrs fast others performance slight issue fast snappy few seconds apps gb crucial ram dual channel gb challenge back cover ram hp user friendly better upgrading ram slowness issue good laptop basic tasks light office work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1367    nice package 28k 29ksound quality awesome win10 os gb ram manageable good battery life acceptable complete value money buy range .competition fierce range requirements mine portability area dynamics u hp amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1368    laptop 7th generation i3 processor gb ram tb hdd first usage laptop times slower year old pentium lenovo laptop.once payment payments amazon policy customer friendly refunds new different model same model same model today bucks drain amazon 2nd product same model same pain agony                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1369    brand new laptopn user laptop amazon technician same                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1370    pathetic trustworthy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1371    laptop weeks speed pathetic sure original hp product last date return yesterday able                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1372    laptop good office work heavy work games video editing work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1373    beautiful design lightweight core i3 good basic usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1374    combination gb ram slow ram gb bit fine place laptop decal sticker coz dull happy purchase requirement ram max service charge college office stuff smart wise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1375    product worst functioning laptop product i3 processors performance pathetic basic functions specification hp amazon buyers maze amazon support question answers laptops nonfunctional more month return policy amazon products con job amazon hp joint party                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1376    laptop compact impressive(build quality performance average t ram gb default colors display dull vibrant saturation levels intel hd graphic settings display amazing vivid.all great buy price point                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1377    bad product weeks display problem speed slow heating issues speed operating months times worst part problem one ready responsibility waste money waste energy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1378    fast delivery item superb genuine                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1379    budget laptop absolute bare minimum.pros light around.decent battery life hrs normal usage)1 tb hdd lots storagecons slow screen spite slow apps office applications secs fully.reflective screen hard light source dirty easilybelow average sound 20k range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1380    worst product fake product hp support poor screen month buying laptop decision                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1381    light weight definite plus.however performance slow extra gb ram gb ssd bearable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1382    good laptop slow software start amazon great price exchange cashback great indian festival great battery life hours fast charger percent hours                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1383    product faulty devices second time product return date stuck                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1384    sleek slim light weight laptop great deal.if laptop ease performance abysmal problem ram atleast gb expandable upto spec ssd boot speed machine matlab default gb ram gb crucial next plan ssd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1385    low quality assemble months complete os good condition slow such low ram compatible windows product student                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1386    laptop display days usage rubbers corner right time hp engineer inspection best efforts laptop display fault hp blame sick bad experience hp local service partner electronics gurgaon folks calls close cases ear customer dell service laptop amazon service better professional                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1387    laptop minutes program chrome folder laptop ages command software issue amazon help technician look laptop minutes software issue hp customer care ram ram new laptop programs laptop past months risk depression                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1388    more funds laptop better processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1389    one sister first impression box tiny light weight laptop easy convenient battert life decent juice hours normal usage games).screen quality decent immersive higher end ones great camera quality average)i laptop issues sister laptop value money laptop(no option great /some bank discounts).i one decent looking fast laptop ssd card processing booting speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1390    laptop faulty crazy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1391    laptop slow light earlier year old laptop better built.my review months useless laptop freezes slow dear amazonians old laptop sad money drain.long term review tip disable windows automatic updates anti virus laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1392    slim light professional little bit slow processing average camera nice quality slow poor processing .plz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1393    dead days disappointed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1394    last week only work word documents browsing laptop sluggish windows mere gb ram option ram laptop worth hindi kaam chalau few thounds extra better version.other features battery screen quality good track pad tardy unworkable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1395    product good condition time father laptop lightweight portable screen size perfet dad battery life decent tasks applications perfect dad usage power users windows experience good dad happy happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1396    best laptop light usage(students heavy gaming photoshops faulty laptop fan new processor goodspeed great windows lag w10ventilation fan vent laptop bad)price point good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1397    laptop last months screen quality worst color calibration disturbed poor quality.internal locks lid keybord keybord cover out.registered call support sept today oct . hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1398    light weight laptop windows home os . tb hdd decent storage gb ddr memory smooth operation longer battery life claims hours last more hours battery built- don;t replacement service center only drawback satisfied laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1399    ms- office ram gb i5 official work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1400    great deal price pointi great india festival salethis awesome good office worksit needsi game freak itit office education work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1401    product rating 3.5.ok review product month.there lot reviews product web amazon high possibility lot confusion.note points ok product second thought:1 bit+ gb ram i3 7th generation great performance brand.2 decent performance browsing softwares mid range games.3.if ram things well.4 hp lot softwares lag initial experience mins laptop fine.5 light weight ease                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1402    office use general usage excel word mails activity system slow quality manufacturer hp disappointed.after response 3rd july single response hp careless attitude defective model hp product personal use official use attitude mind hp face value                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1403    sorry amazon right product duplicate pre os barcode high subspecies genuiness!trust %                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1404    sir/ mam kind information necessary action laptop few days people second mine same problem many times centre call service station ahmedabad customer care pendriveand data pendrive reinstall data same same problem.now m unable laptop job work halt 5000rs daydue laptop inefficiency t laptop other laptop amount laptop expedite court solution life non - sense product .regards sharma                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1405    good budget laptop day day job light handy booting fast battery life good quick charging optical drive days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1406    fast durable laptop 23k regrets best laptop category light weight thanks seller amazon deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1407    hardware compatible software.takes able able work.basic excel powerpoint freeze.wish this.don't money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1408    problem operating.system slow day hp customer care unable it.system use issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1409    meeting expectations old lenovo better one major issues brand new laptop brand hp big major soo few months old warranty information lenovo bcuz good deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1410    best deal laptop cashback diwali sale amazing lightweight afraid original one months problem price i3,7th generation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1411    decent amount money laptop.its compact light.only concern ram management gb enough smooth performance.on offline mode ok gb ram gb ram smooth.please gammers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1412    new review days use laptop lot min startdosen't office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1413    amazon pathetic product refurbished product lot hardware issues husband birthday gift march last months key board problems connector screen keyboard noises lock opening electronics amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1414    laptop bogus low price windows laptop lightweight bloated pre software moment disk space % laptop week bi tools boy disappointed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1415    laptop lot better pre installed app antivirus.otherwise wall monday morning                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1416    first laptop hardware issues replacement new key board spot screen worst product hp hp devices kind experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1417    wife replacement year old dell mac user windows work build quality good 27k price hp light weight laptop steal back lit mac product good long term review                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1418    31k drain bloddy month old laptop basic browsing alone heavy usage pc minutes request one product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1419    rupees amazon pay happy dirt cheap happiness much time laptop patience multi functions good chrome chrome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1420    home requirements bill battery life good laptop lightweight screen ok gaming speed.overall good value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1421    hp windows slow dead.dont load laptop 20mins all.if more tap browser system longer time.waste money waste time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1422    bad producat sale online becous micro soft laptop soft wear update parches online m product last working time hours update house electronic product other benefits                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1423    slow faulty product minutes folder application temp files stuffs help looks weight okay actual purpose use service center                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1424    slow laptop beautiful speed.i product.i pdfs movies browsing small works lot time browser.5_10 minutes lot.you                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1425    slow hang mins worst product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1426    last months screen battery weight ok star software issue ver slowand hp service centre improvement asus products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1427    good price booting time much gamer heavy user movies songs time page performance average                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1428    time delivery device description easy lightweight good graphics speed nice i3 processor battery life excellent better description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1429    best laptop office home use light weight small size laptop helpful sound quality battery life best product thanks amazon hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1430    worst laptop simple office works documents files game don t price specs hp brand value kind lappys                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1431    product months poor performance replaced product able powerpoint i3 useless hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1432    product slow decent light weight good battery life good looks original windows slow deal breaker laptop months use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1433    budget laptop average build quality gb insufficient win10 gb light weight.good browsing documenting medium heavy usage better 10k i5 gb configuration minimum                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1434    office use great product good sound great battery life great price cashback amazon quick delivery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1435    mins application mins iam slow ness laptop dell time hp customare laptop horrible                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1436    adapter laptop poor quality 10days purchase problem charging unable battery problem battery adapter simple wastage money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1437    good product product good use office work good work sound ok battery life good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1438    excellent sound equalizer sound battery good weight 1.59kgs godd laptop hand.kudos                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1439    speaker top sound quality awesome.matte finish laptop look first classno lag heating problembattery upto hrshandy inch screen best lap market 25k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1440    best laptop price wife happy one price m happy deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1441    good light weight good general office work multimedia application low                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1442    screen size slight small performance wise worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1443    product worth more sturdy product major software issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1444    sound quality standards battery life good minimum full charge light waight easy use only issue slow processor windows time much                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1445    good product nice low weight graphic quality good overall performance excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1446    poor product worst slow share wastage money sales service poor genuine review                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1447    laptop slow laptop pentium version folder ages start lot possible way hp assist slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1448    slowest slow tortoise seconds tab other tab google chrome unnecessary apps kind noise laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1449    delivery time effective light weight speed good inch screen enough better look                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1450    value money comfortable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1451    slow machine windows ms office older laptop gb ram whole lot software year                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1452    thing light weight laptop overall plasticky build extra care monitor ugly oversized charger entire package heavy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1453    ideal laptop types uses battery life excellent screen quality good smooth keyboard windows little time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1454    key pad use windows software problem review sure genuine                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1455    laptop applications purchase laptop same day delivery complaint amazon laptop customer service department                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1456    good laptop lenovo laptops rough tough usable lets hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1457    worst laptop laptop fan hang problem more time speed good money laptop laptop product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1458    product standard lot time boot shutdown restart long time laptop configuration high speed disappointed online laptop purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1459    light weight expectations dimensions performance.a good students presentations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1460    key board laptop slow i3 processor 7th generation extra internal solid state drive speed laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1461    worst product days repair frequent money waste                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1462    month light weighted processing speed good display fantastic feel inch laptop doubt                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1463    worth budget 38k other laptop lenovo more features higher configurations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1464    wonderful product good cheap brother mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1465    system slow office product licence difficult customer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1466    nice light weight laptop basic usage ment heavy tasks multitasking design lookwise good bit lagged slow processing)overall nice slow processing laptop basic use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1467    windows laptop slow operating system laptops 40k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1468    model april programming laptop gb ssd advisethanks shweta                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1469    baddisplay laptop hp care center 21.09.2019 get.today month                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1470    product light smaller size problem low battery life heat uncomfortable lap                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1471    handy dail usage laptop performance decent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1472    window slow abnormal start time office microsoft original                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1473    worst product date slow website disappointed hp amazon such product inventory                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1474    best deal fantastic machine light users original windows light weight bit slow pricing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1475    bad performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1476    good product slow good normal use much load gb ram better processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1477    nice purchase nominal price value money home amd official use.appropriate battery life easy carry weight laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1478    laptop good speed operating performance many times application open many times few minutes laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1479    october stops year.i solve problem warranty status active                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1480    great product wonderful price light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1481    disappointed screen blue red duplicate fake product.i'm suit seller                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1482    message niw windows wth wnd windows lifetime                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1483    nice light laptop build robust overall excellent machine light usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1484    good.light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1485    steal deal cheaper model hp world store thing configurations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1486    value money best thing light weight comfortable screen size                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1487    good price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1488    laptop good use time time heavy software now.battery life good fast                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1489    computer good speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1490    slow process mai blank dikhata hai week iska natk chalu eda banae ka dhanda hai bad bad bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1491    system                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1492    slow unhappy buying                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1493    good laptop hp prices material quality shoot overall good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1494    good performance light weight compact battery backup hours sound quality adequate good choice day today activity only drawback reason awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1495    more months review working slow time minutes latest technology software customer service worst                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1496    laptop windows sure problem processor ram laptop min blank excel file                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1497    medium speed rs year slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1498    value money price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1499    much performance issue alot time excel files docs usual performance disaster                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1500    good laptop hp months problems easy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1501    bad slow pc able own hp support assiatant screen black boot crap                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1502    time hangs.3-camera hd web cam image poor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1503    slow brand hp happy product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1504    price 31k price better discount good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1505    bad slow hanging option                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1506    value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1507    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1508    lot time on.it processing speed slow time lines screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1509    problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1510    nice product heavy programming videos movies lightweight editors                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1511    laptop slow task things laptop basic use movies stuff many programs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1512    product warranty date purchase warranty laptop months earlier.replacement laptop same issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1513    issues windows first week                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1514    back lit keyboard full hd display mouse buttons hard                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1515    poor response machine hard disk year time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1516    vear poor battery life screen quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1517    stylish look wise sound good processor fast                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1518    worst laptop ve last 20yrs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1519    item pathetic yesterday product expectation quality good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1520    slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1521    windows software month hp service center big project                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1522    worst laptop slower tortoise.also issue process                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1523    laptop lot i3 unable win win7 smoother                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1524    slugish laptop windows compatible gb ram.better gb ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1525    slow hangs total disappointment possible replacement careful purchasing one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1526    lightweight stylish laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1527    excellent product value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1528    laptop design sound good light weight performance slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1529    happy product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1530    don t computer computer latest version windows computer this.am disappointed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1531    few weeks use laptop return window disappointed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1532    beteer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1533    best quality range light thisss                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1534    good quality ok processing speed slow.with price range big compromise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1535    i3 process slow.my work web minutes simple web window                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1536    basic feature laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1537    23k good laptop big days oct                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1538    battery system okay                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1539    satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1540    worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1541    bad performance time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1542    speed average touch pad sensitive                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1543    light weight good original windows laptop little slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1544    processor slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1545    laptop slow i3 7th gen processor problm                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1546    laptop fine microsoft office package additional amount                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1547    good product affordable price.something bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1548    worst laptop performance vry ur money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1549    rating amazon pc easy pathetic process some1 truth false adapter realtek b g n pcie adapter airtel/ reliance internet laptop information technical specs laptop other cons big heavy no- touch screen ssd normal hdd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1550    decent laptop wireless adaptor b g n band signal max speed high speed mbps connection able                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1551    worth nice hp laptop fine.sound quality good battery % 6hrs.i feel good decision money good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1552    laptop good angle price reasonable bad experience amazon laptop warranty months purchase date amazon times time answer amazon promise problem genuine days 1st mail committee problem month amazon committee resolution hp company warranty problem laptop amazon amazon correspondence hp amazon correspondence hp hp practical problem single mail                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1553    laptop full series problem new folder system laptop same problem different lappy speed par specifications boot time more                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1554    pathetic piece hardware poor performance gb ram laptop ages desktop simple programs chrome unresponsive program.2 keyboard mouse pad placement ergonomic uncomfortable keys hard intuitive placement.3 lit keyboard standard laptops price range4 mcafee virus few days months free5 additional warranty hp reason                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1555    battery hybernate mode processing slow applications old laptop new body pathetic experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1556    hopeless service amazon laptop today able voice commands stage phone info able disappointing customer service tech support team amazon hp team help pathetic service support                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1557    hp assistant months warranty bad impact                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1558    laptop best awsm days free mcafee trial battery life excellent front cam good office product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1559    bad producr guys                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1560    product win10 ms office key product multiple calls hp center solution assistance ms office thanks online support office glad online support available                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1561    screen display defective piece customer care sad experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1562    laptop 29th sep frm 1st oct 2019.when laptop laptop warranty status warranty 15th dec device 16th dec 2018.please warranty issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1563    laptop wife great fan hp last hp laptop years perfect day day business needs happy one value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1564    product good lower configuration 33k past experience windows needs better configuration i5 gen7 high processor performace lags                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1565    review laptop.pro's- ships windows ms office- battery life hours ok.- keyboard responsivecon's- lights laptop light- laptop heavy laptop- core i5 gb ram performance slow- screen color accuracy sound quality mouse keys hard pressi weird issue hp support last days able touch laptop range 45k brand laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1566    amazing price many optimisation vent region display keypad non - contacting surfaces light weight board speakers good work previous model con thing variety colours model amazing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1567    best class performance features value money battery life upto mark display audio quality great cream cake microsoft windows lifetime validity microsoft office lifetime validity                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1568    bad product september hard case money days laptop more number times service center reply money laptop keyboard mounse pad all.please this.thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1569    review guys waste moneyvery cheap build qualitymy display reason hp customer support physical check up.no c type usb non removable intel i5 processor satisfactory performance.i wish stars hp service disappointing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1570    guys laptop laptop battery problem support idea problem battery issue battery long time adapter notebook plugged contact hp support centre update bios things centre battery showing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1571    best product price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1572    poor battery life performancethe battery % minuteeven i5 processor gb ram laptop slow tortoiseit amazon 2nd hand producti'm decisiondidn't such kind service company amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1573    time small setup basic pc knowledge office package online antivirus norton years.overall moderate user                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1574    product nice light weighted nice battery life usb ports description backlit keyboard problem.other attractive specs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1575    fi speed limitations other users amazon purchase.-has ms office trial version only.-keeps second day unpack.-you item copy untill refresh.-usb ports audio jack tight ones duplicate products.-touchpad clicks good exercise fingers.-sometimes anything.-sound quality good.-display disappointing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1576    good performance battery life more hours lightweight easy money windows office student version free product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1577    overall nice laptop good battery backup sleek compact performance wise good happy purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1578    ssd gb worth buy laptop startup shutdown applications real fast.good value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1579    worst product slow password recovery job worst experience product immediate replacement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1580    need hp product great quality laptop exception thing laptop band wifi most people laptop band fine                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1581    good product lot days sound                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1582    battery service engineer battery windows battery backup awesome happy purchase performance nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1583    good product hp boot time windows hp utilities issue wrong lenovo same configuration lenovo faster hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1584    problem system technical inspection 22nd replacement amazon replacement today system idle                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1585    overall value money price range quality good windows ms office student version lifetime system speed good heating issues asphalt                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1586    good configuration windows ms office sure validity ms office lifetime year                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1587    good purchase speedy delivery good codition                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1588    poor service amazon date purchase date hp system duration warranty months less waranty one support end hp amazon updation record necessary documents evidence                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1589    good laptop amazing features price range slow start good battery life hp support usb jack cumbersome one slow sound quality good overall nice product range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1590    slow browser excel screen power button hr worst product.dont buy cheaters                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1591    system fast battery life increase thing perfect love laptop thing fine laptop side satisfied product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1592    screen lines replacement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1593    laptop good good performance battery life negative sides weight size laptop size laptop big weight heavy heavy mouse pad laptop user friendly star rating                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1594    month sleek design fast battery backup good bit slow rare cases small software boot speed quick 10sec laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1595    amazon year manufacturer warranty hp site product active months warranty months warranty loss taker warranty date invoice purchase consumer retailer case                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1596    ms office trial version days laptop delivery.all buyers extra budget genuine office antivirus approx month laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1597    nice product hp good package                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1598    satisfied                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1599    laptop speed slow compare product graphics backup hrs description much time booting money amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1600    value money good quality sleek                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1601    thanks wonderful gift amozon team great work.once thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1602    key board                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1603    satisfied power button charger signs battery box service center way communication poor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1604    battery life good many times exchange speakers good value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1605    cons:1 slow processing2 battery life average good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1606    good time delivery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1607    product good qualitybattery life other good looking windows slow time ms office tools update excel etc.update compulsory fast regular good working                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1608    nice product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1609    fast good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1610    more battery life better deal exchange same brand laptops                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1611    laptop good look vise performance vise i5 processor gb ram speed good performance good lenovo better hp price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1612    unbelievable price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1613    cool product good battery life light weight good value money overjoyed product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1614    replacement order process good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1615    overall laptop good little bit slow other people                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1616    good product vfm delivery amazon good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1617    budget laptop quality product good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1618    laptop ms office pre week activation charges fruad product less customer care services                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1619    inches inches size other features alright                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1620    win ms office software pre installed unable hp proper feedback                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1621    battery life average weight average best product value money game best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1622    product key ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1623    poor experience dispaly damage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1624    hp 15q ds0029tu laptop 7th generation intel core i5 processor ghz gb ddr4 ram tb hard drive perfect normal love laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1625    lot issues amazon problem hp amazon trouble microsoft warranty issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1626    lid bottom screen display bottom section                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1627    warranty card present box                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1628    vollege student                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1629    laptop day horrible experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1630    bit slow non responsive keypad hard better showroom models recommendations ssd version                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1631    laptop yesterday good.i laptop ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1632    problem usb ports                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1633    battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1634    sound quality picture quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1635    last months laptop issue battery backup quality same budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1636    little slow system                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1637    value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1638    overall good laptop months complaints                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1639    overall performance slow battery life good value money worthy other laptops available keyboard light available                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1640    order 8th generation part 7th show 7th generation headlines 8th generation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1641    excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1642    product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1643    ms office properlyno technical team hpno solution amazon teamnot purchase onlineoffline good support                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1644    laptop value buy huge time boot annoying                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1645    fact display disappointed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1646    worst product month slow laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1647    venkat laptop ms office able office file needful request                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1648    fake product don't money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1649    worth money defect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1650    nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1651    battery good bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1652    nice good package delivery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1653    laptop good working date delivery address.delivery experience bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1654    old slow laptops upset kinda delivery amazon quality laptop hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1655    laptop little bit slow 7th gen mb cache integrated graphics.work needs specifications                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1656    laptop happy customer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1657    price high                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1658    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1659    light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1660    dvd writer defective only week old laptop writer defective first use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1661    value money useful multiple users                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1662    product description 8th gen product lable 7th generation bag headphone ppl                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1663    product good 1st day keyboard                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1664    good product prize range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1665    little bit slow ok                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1666    laptop slim good problem chrome google websites                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1667    upto expectations slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1668    good product heavy weight many features great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1669    product good warranty months year warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1670    slow system value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1671    month system more gb data tb rom                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1672    much time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1673    good issues happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1674    much time compact                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1675    laptop good whole day good performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1676    awesome product price genuine window +2019 ms office 38k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1677    battery worst performance average                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1678    laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1679    battery lot usual                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1680    new problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1681    worthy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1682    worth value                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1683    sleek good looking                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1684    worst experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1685    light weight fiber body good need improvement metalic                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1686    twb youtube channel                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1687    worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1688    nice products low price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1689    best product price range thanks amazon discount                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1690    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1691    good product quality buttons r laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1692    one best products hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1693    good bad performance slow response                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1694    slow processing speed much time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1695    product purchases waste money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1696    touchpad performamce good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1697    laptop speed mark good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1698    processor slowthere partition window                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1699    ordinary model                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1700    battery life good.light weight good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1701    laptop box warrenty card available                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1702    7th gen processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1703    incomplete software duplicate model                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1704    good product amazon andim good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1705    weak hard disk big problem boot loader available                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1706    anti glare                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1707    laye                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1708    processor booting time slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1709    okey good quality better material                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1710    good product worth money stylish design                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1711    good product best price tag battery auwsm                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1712    heavy user product nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1713    veey good prod                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1714    good laptop quality value money product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1715    good sound quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1716    good battery life light weight value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1717    battery life little bit                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1718    thing good cemera                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1719    good quality range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1720    thickness battery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1721    superb laptop costly                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1722    nice product worth buy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1723    hp disappoints                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1724    good performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1725    good students daily usage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1726    durable less weight affordable cost                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1727    time 15mints system                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1728    processing late                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1729    little bit slow battery life low                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1730    processing speed slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1731    shoot package products hp laptop charger value full money laptop battery life laptop weight sad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1732    good laptop college student decent performance little slow gb memory windows home ms office office ms account installation office products nice screen nice looking laptop issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1733    dis laptop worth 22k good show good product amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1734    3rd grade laptop ms excel own time slow operations laptop school pc 2nd standard classs slower school pc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1735    rough use product bad productvery bad product bad service one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1736    hp db0209au laptop a4 windows graphics jet black good basic moderate description anti - glare screen anti - glare screen.its slow long time simple things file explorer ms word pre - installed windows slow.not good heavy games light weight games.microsoft applications word product key activation microsoft office.rest laptop light weight sturdy good good keypad panel pad.but price rs.20,000/-)(p.s re - installing other version system                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1737    worthy money waste money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1738    windows slow product badand members amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1739    hang windows day 1if windows drivers websiteit dubba driver usb lan wifi others                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1740    microsoft office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1741    secreen quality bad bad exprince amazon customer support                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1742    product min wast money sellerdidnt quality product1st productthan worth lessi star rating product butwithout rating review possible revuew                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1743    pathetic performance t amd processors worst waste money amazon support worst                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1744    good.except software ms office discrimination support ms office re - install own                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1745    initiation little more time function work laptop affordable best range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1746    description pathetic month updates calls customers money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1747    minutes operation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1748    battery more hrs hp false complaints 6- hrs laptop amazon body helpingme                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1749    processor bit slow beginning windows better i. windows sound graphics good value money product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1750    worst laptop brother motherboard customers times reply.please laptope                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1751    long time boot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1752    product.amazon replacement product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1753    good choice.very handy.ramakrishnan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1754    product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1755    budget laptops                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1756    good college students                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1757    computer slow buffering time high.not recommend purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1758    worth money government laptop tamil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1759    battery up 1hr pre - installed msg office open bad experience lap                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1760    slow processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1761    bad product amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1762    initial problem line center solution good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1763    product usb port m poor person m weeping solution                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1764    warranty details warranty detail thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1765    worst performance long time power waste money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1766    worth money windows windows works                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1767    much time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1768    value money nice product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1769    home edition good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1770    nice product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1771    worst laptop change exchange                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1772    year warranty card laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1773    good laptop game                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1774    r battery work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1775    problem product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1776    nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1777    maximum number                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1778    worst product amzon date                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1779    advertisement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1780    laptop best slow working                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1781    display dim superb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1782    product poor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1783    excellent product price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1784    cool                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1785    nice product value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1786    worst product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1788    speed slow hai                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1789    charger broken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1790    beste leptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1791    garbage                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1792    wrost                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1793    poor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1794    fake                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1795    cd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1796    good laptop smother operation screen battery backup good surfing hp laptop price original windows happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1797    pathetic product product money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1798    nice laptop budget more fun videos games good battery life big screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1799    nice super amazon thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1800    system slow difficult                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1801    month                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1802    laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1803    friends laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1804    osm                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1805    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1806    nice gamer good screen resolution class                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1807    product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1808    laptop technical issue slow command                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1809    better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1810    great chromebook faster mac windows computers easy boots good most people general use balanced chromebook good price better quality screen higher end chromebook daily driver first go machine good hp chromebooks india reasonable price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1811    product faulty product amazon call centre problem ready replacement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1812    good experience first chromebook                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1813    chromebooks google ecology.the battery life great screen average price point quibble inability hinge tablet sound speakers terrible keyboard touch screen responsive great road warrior cheap easy more years great                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1814    everyday purposes browsing shopping social media chromebook perfect windows chromebook hopeful happy screen display sound :) extra bells whistles windows simplicity chromebook                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1815    worst mobile means mobile better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1816    awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1817    decent chromebook hp white color awesome first chromebook love secure windows good everyday tasks lag                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1818    device great battery life lightweight perfect heavy software user students gaming stuff                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1819    great product backlight key board                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1820    nice product hp backlit keyboard                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1821    fantastic # favourite laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1822    browsing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1823    microsoft installed?and autocad antivirus system                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1824    product good basic requirement net surfing ms office basic applications bit slow needs.its speed hungry people best people budget laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1825    good slow battery backup disappointing mei good price rangestylish look                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1826    good day day usage check seller reseller hp warranty issues product same lot phone calls email able same                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1827    display super battery good nd keypad smooth warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1828    good quality laptop high processor bettery life satisfactory value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1829    warranty package                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1830    windows verry sololy sistemand retoiler verry poowr                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1831    guys crap thing laptop trouble day                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1832    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1833    date slow half hour customer care worst                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1834    months qualityno good service centre hyderabad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1835    good design value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1836    pic video quality bad slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1837    better deals configuration price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1838    hp laptop smother                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1839    best daily use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1840    mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1841    overall good product price rate                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1842    value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1843    battery good warranty card                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1844    pathetic product.hard drive months                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1845    thing love atleast decade house loan m happy m jobless homeless hopeless                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1846    good laptop.but health issuesbecause kidney difficultbut                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1847    amazing laptop dual screen cheap monitor desk cheap fact amazon laptop cheap laptop funny                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1848    good machine machine m happy eyes kidneyand house                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1849    perfect overpriced ram gb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1850    power full dual screen machine fluent gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1851    solid gaming laptop portable available options.dual screen 144hz refresh rate keyboard.just i9 version                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1852    beast gamers fanatastic performance clarity display awsome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1853    quality laptop good fast gb nvme m.2 ssd smooth touch.i defective charger manufacturer replacement.call hp technical support.it hours battery backup tb hdd rpm finger print scanner alexa seller careful description product model number correct description other model seller pain description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1854    disappointed purchase specifications finger print scanner product description gb ssd tb hdd gb ssd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1855    model dh1007 dh dh1010 backlitkey board dh1006tu doesn backlit keyboar confirm plz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1856    good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1857    best budget gaming laptop only concern battery life battery hours hours movie hours                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1858    important message seller old product warranty extended warranty month old product contact hp india support center amazon purchase bill product serial number product brand warranty process.product review expectation budget laptop.build quality plastic much screen ips quality anti reflective key board back lit leds bright choice camera okeyish mic sound adequate good regular skype calls.1 tb sata old school dvd writer laptop heavy day dvd writer reduction weight table long.ms office h&s lifetime free process amazon video ms account installed word office2019 version office365 trial.as sata booting time gamer battery good price hours regular work.too performance ryzen i5 less.overall perfect home laptop use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1859    good configuration nice looks value money laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1860    laptop warranty months amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1861    color delivery timingoverall product good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1862    nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1863    superb product superb wuality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1864    light weight portable nice look laptop product hand bag easy price ms office laptop days trial version company                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1865    laptop today power button hp customer care dead laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1867    keypad light one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1868    worst product life worst service bangalore warranty months laptop keyboard hp service half month                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1869    fresh invoice copy product serial number model number hardware issue product hp invoice letter proper serial number invoice copy further procedure                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1870    performance slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1871    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1872    purchase.screen size small inch tablet                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1873    product screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1874    model single memory slot provision m2 disk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1875    worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1876    compact light purchase reliance digital.1k cheaper detail review time thing dont laptop amazon sellers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1877    thanks review about                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1878    slow portable product use tablet mode satisfied product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1879    slow processor hp kind waste product money kind product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1880    slow hp pavillion laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1881    contain ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1882    amazon reliance digital experience horrible.1 month purchase keyboard working.2 service centre dehradun problem.3 month problem slow phone s7 laptop more few tab time.please avoid                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1883    slow sl invoice warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1884    edit -------using laptop 4k content 4k tv frame rate less latest inch sony tv basic gpu unit more 4k display fine purposes now.edit more observations upgrade--------------------------------------------------------------------1 photoshop light room mp files slr.2 sorts video files dts x265 file size much gb biggest files half good other computer bluray iso files 8th gen processor good track pad sensitivity excellent good hp laptop brother years track pad ordinary great improvement here.4 movie clarity screen top notch max brightness able scenes battery life.5 battery life hrs time bios better either.6 fan sound attention daughter sound other laptops pc much sound room windows wife others obvious)7 multi tasking good multiple cpu apps large excel file lots formulas lesser laptops bit fine.8 tablet mode good laptop music system bluetooth convenient music movies.9 asphalt slow fan full speed installation firefox chrome heavy handle.10 ssd boot opening apps fast.11 ram usage % idle gb more headroom noticeable.12 headphone output loud best quality sound audio technica ath decent sound b&o play enhancements headphones audio output port search forums 8th gen core i3 i5 base clock speed i3 gz i5 1.8gz clock speed performance tasks single core.even modern apps capacity multiple cores % single core i3 purposes gaming i7 faster clock speed higher cores basic testing shop multiple laptops i5 i3 i3 better i5 i5 better i3 guess laptop upgrade end.edit revised review top original one bottom.------------------------------------------------------------------------------------------------performance laptop good laptop samsung gb ssd gb ddr4 ram amazon india)the install hp authorized service center disk lot bloatwares hp assistant biggest intel rapid storage real system performance killers3 samsung magician rapid performance other settings this.4 mcafee av laptop subscription avast favorite preference.if kodi home media sw few seconds more program above steps performance upgrades laptop.i photoshop other image editing programs laptop ssd gb ram model laptop.the fan basic use loud system load system frequent parallel tasks system windows updates background slow.if faster performance core i7 processor laptop ssd gb ram expensive cheapest i7 processor ssd additional ram.initial impressions few hours use upgrades original reviewthe good:1 price cheaper shop 3k good discounts top cost 4k.2)touch screen good screen clarity good matt touch pen useful apps.4)laptop compact laptop speaker better most compact laptops home about.not good:1)weak processor fan minimal work load louder pc apps other laptop cpu load task manager cpu load % task manager normal other laptop pc older gen processors.2)4 gb ram enough ram usage basic operations management ordinary laptop temperature hot lap august hot may non air conditioned room chennai.4)the characters keys keyboard backlight bright light room
1885    laptop laptop tablet degree foldable detachable free pen2 full hd display hdmi port type c usb port lat one future proof next few years)3 keyboard places times4 free microsoft office5 small big lot articles inch screen me6 graphic card weight price video games editing).7 reputed brand8 price less hp pavilion x360 model requirements amazon pay cashback 46k value money free office slow few youtube videos performance only low point low battery life hours high performance settings low performance settings hours okay price point days more happy far.go requirements similar mine addition cool look others touch screen gadget display                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1886    premium fit features model good combination form functionality only grouse lag own few weeks durability particular piece replacement piece original one little worried experience hp products great past one % cb months warranty wplov                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1887    product hurry diwali time few critical issues laptop1 slow loading hell lot time2 manual update system auto windows days time updates hours time laptop3 many times command laptop window tabs nice fancy gadget practical utilities disappointing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1888    laptop sshd boot fast smooth case apps crash laptop lags irresponsive tablet mode problem heating performance dissatisfactory macbookpro new hp x360 constant attempts amazon refund replacement product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1889    less days faulty product slow min disappointed hp amazon replacement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1890    laptop last months issues good good matter issues audio company software update issue heat sink more days complaint part sure pathetic sales service laptop slower p1 system product review part performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1891    awesome laptop premium look review bit slow gb ram single lag ram update boot time adobe light room photoshop illustrator skylum luminar computer lag gb ram update stylus useful illustrator accuracy regular uses enough i3 8th gen same processor speed i5 difference cores most software cores one cheaper option laptop ram hdd current tb hdd external hard disk cute laptop hard disk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1892    hp pavilion x360 inch fantastic machine screen touch speed ordinary                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1893    battery life standby hours machine slow more tabs browser applications startup slow disappointed looks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1894    serial invoice different serial machine machine packing box hp unwilling return exchange product several faults writing fraudulent invoice hz machine website ram speakers faulty hp faults doa exchange approval invoice proper serial dealer fraud police complaint only solution amazon helpline robots product amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1895    great team work vendor amazon laptop hours great easy pristine condition great sound butter smooth touch screen response nice lit keyboard silent processor fan total value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1896    screen thin stable vehicle car.worst laptop useful fancy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1897    device days good delivery time startup smooth pen works touch bit awry(it bottom screen touch rest screen first time bios hp support manager application warranty device works performance good standard home use ddr4 ram things hard drive sshd boot times fast.the problem windows bloat ware needless background services advertising suggestion features disk usage processor processor things pen krita program pressure sensitivity input lag ok serious drawing device good pen support disable touch pen feature windows setting spurious touch input.for internet mozilla little ram intensive chrome fast.however games video ram simple games asphalt microsoft store benefit office home word excel powerpoint onenote lag.all good device daily usage battery hours internet usage background programs brightness percent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1898    battery life touch screen good laptop light weight speed good purchasing customer warranty activation date laptop warranty months manufacturer offer end user user customer seller                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1899    hard disk crashspeaker problemnow black bar timehow many time product serious action product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1900    thanks amazon team excellent product hp good value old laptop softwares                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1901    laptop huge issue slowness application very frustration wifi own few months purchase service centre issue problem worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1902    light weightcompactstylishhave touch screenspeed ok normal usagecomes office microsoft website activation week)as whole satisfied purchase rs.46500 freedom sale offer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1903    handling wise great weeks earphone socket speaker laptop speaker amazing naa rs dabba youtube movies music fan dell time hp disappointed hp laptops                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1904    laptop purpose don t much slow other reviews i7 7th gen gb ssd elitebook laptop difference battery life max hours medium brightness touch sensitivity good weight average stylus plus real drawings sound quality mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1905    laptop stylish microsoft application workingwhen people microsoft invoice laptop laptop window 10and amazon people productjust waste money waste time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1906    hp pavilion x360 slow screen black edge screen degrees unsatisfactory product t                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1907    laptop month good impressives:1 great experience system hang slowness performance2 soft keyboard broader keys elderly young key press smooth silent.3 touch screen fast responsive hiccups.4 battery life decent full charge hrs fast hrs decent level.5 hdd system little time boot.6 finish decent few words appreciation selection digital window ink pen impressive performance multiple ways sticky notes reminder etc.8 dual core system processing decent system large data set macros etc.9 tb hdd storage huge loads data word caution habit data system god amount data.less impressive:1 win system gb ram gb ram little impressive price.2 touchscreen option sure screen scratch resistant much details internet.3 system dual core medium larger data macros.4 laptop good more connectivity options optical disc drive usb ports usb port hdmi port gen type c port user external multi connectivity type c adapter rs laptop dedicated volume control right side laptop available volume control keys purpose additional volume keys redundant finger print sensor more value product price stronger product pitch.apart standard year domestic warranty defects deficiencies.conclusion product decent purchase lack finger print sensor users way other options lenovo asus strong user laptops less amount technical stuff good choice with.thanks helpful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1908    review year slow performance gb additional ram performance little better.- touch consistent cursor place user action.- display screen lid lid right top corner corner display out.- system smart watch charger magnet usb port system restarted.not worth money hp quality other use cases technical system                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1909    laptop look good other features elegant laptop slow slow laptop awful compaq presario cq40 yrs old times faster laptop mac air superfast lot negative side laptop slow same options                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1910    travel trek tours finances investment communication travel.great product little slow much video games windows basic office tablet mode touch screen.i star bit slow hp suggestions additional hardware happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1911    lot glitches screen lot touch much demands restart waste money pathetic battery performance minutes                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1912    slow laptop patience patience few times while sort covert operation backend time entire gb ram.keyboard key multiple timesfancy practical use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1913    laptop many months many pros laptop lightweight machine touchscreen genuine os office quality ssd performance laptop average laptop additional gb ram kingston gb ssd(samsung evo860 performance laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1914    laptop nice lagging first instance product satisfied awesome packing great ontime delivery small thing pen normal mark perfect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1915    product good major issues wifi windows wi fi multiple options windows support website none hp website windows windows setup laptop problem wi fi connectivity many weeks feedback people                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1916    worst product used.it days time technicians troubleshooting today same problems single file pdf word excel app less mins refund amazon refunds new issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1917    pros stylish trendysmooth touch responsebrilliant screencons bit due sshdd)poor battery upto hrs.no finger print sensor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1918    star hp factory first minutes hp reluctant issues buyers amazon seller hp great job                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1919    defective piece time complaint return period service centre problem screen touchscreen didn t work issue bad experience valuable lesson such costly products defective piece                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1920    okay great better variant faster i3 gb ram worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1921    high price sshd ssd minutes use fan sound heavy mechanical cad design performance poor system slow issue % disk usage hp windows deadly combination advantage portability.update months use light quality poor jan warranty august seller appario ltd poor quality laptop product suspicious low quality packaging company cover product kind costly electronics new                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1922    product 5th may gift package updates laptop slow simple word other applications programmes machine slow 10days product gift wife machine day period amazon laptopn days period machine same problem lying table dust sleeve dust warranty months hp website months hp months warranty amazon tech guy place model problem disappointed hp product other laptops printer hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1923    pathetic best word product hp such laptops good paperweight other single application file photo i3 processor gb memory insufficient os menu windows logo left corner task bar dedicated windows key keyboard only way long power button force shutdown hp such laptops own foot laptops competitive market place second rank players laptops same price point brand quality wake call naive good old days today money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1924    laptop look good videos time minute google chrome item                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1925    honest review personal experience product future pavilion i3 tb ddr4 good laptop niece school kid beautiful looking laptop amazing screen display thing product processor people multitasking slow laptop harsh point comment amazon time guys willing much amount device heavy softwares device eg photoshop illustrator brilliant brilliant web browsing movies netflix presentations etc.battery life good.touchscreen good responsive device brightness certain level bright!i disappointed glitches laptop tablet mode confused glitches keyboard good sketching t palm touch review serious personal review showroom first chroma outlet product product thankyou amazon love t macbook buttery smooth workflow god apple lives age 9th standard good laptop purpose heavy users i5 i7 apple beautiful thing aspect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1926    laptop timely delivery product months laptop past few weeks blue screen error frequency higher disappointed other laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1927    premiumvery nice display crisp sharptouch screen performance great aceptablebut price tag hybrid ssd boot agesi amazon reliable store.they faulty laptop necessary technical problem.if ready hour day same issue customer care executives empty promises more weeks amazonps product weeks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1928    lapi day delivery awesome times performance slow specs gb ram ram.they gb nand flash memory fast boot laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1929    speakers whole lapy inbuilt audio update speaker                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1930    poor product hangs light applications system heavy apps waste money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1931    worst laptop hp support hold minutes call hp support hardware network cardand network wire waste time money btw call support reinstallationand hardware support                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1932    nice laptop price range months fast boot sceen quality superb audio crisp little low bass 10k more i-5 version faster better deal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1933    amazing light laptops below screen sensitivity time use responsive folks go laptop handy.overall great product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1934    laptop months looking2 slim designcons:1 slow performance.2 battery hour.3 smooth interfacefinal comments satisfied performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1935    awesome business person compact powerful price range touch screen lappy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1936    problem touch screen days delivery able laptop days cursor touch screen work weeks hp technical support team screen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1937    worst product hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1938    laptop fine slow laptop ram money tortoise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1939    fantastic product touchscreen good more ram better                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1940    genuine advice guys laptops unworthy purchase laptop useless hardware issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1941    satisfied brand new laptop heating problem colours erratic eg red shows orange yellow khaki hp help laptop dont amazon showroom problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1942    product good better best bad worse goodvery long time restart.touch good experience microsoft pro touch screen wonderful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1943    disappointed third month times k letter screen knowledge word search engine times mouse control pad keyboard                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1944    few days slow months warranty repair mother board replacement                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1945    suited office needs casual viewing graphic practices configuration apt normal usage lags delays best points flexibility superb touch light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1946    performance poor slow dissapointed.rest thing look wise good showpiece.very poor performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1947    star rating product battery life normal light weight touch screen fine amazon u products laptop password previous owner                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1948    needs use tablet clinic laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1949    laptop machine basic tasks fan noise hard disk % utilization laptop default gb customers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1950    great purchase reliable product hp smooth functionality product convertible feature practice digital art stylus good pressure techniques calligraphy digital art                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1951    battery near hp time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1952    ram low gb slow gb3 warranty online registration4 button good.overall satisfied purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
1953    much noise fan slow important issue product top bottom fan hard disk heater laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1954    laptop months true colour slow mins games notes presentation slow iam u guys product waste money budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1955    poor quality slow garbage half lakh rupees                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1956    hard disk month hour day.i'll service centre see.i'll                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1957    issue graphics lag chrome browser multiple tabs blank screen hang .so suitable disabled touch screen keyboard lit                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1958    product duplicate hp showroom ready call centeres hp pathetic unable issue time call                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1959    computer slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1960    features good price battery backup good maximum hours normal use nits                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1961    laptop look great performance speed good compare other laptops lets weeks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1962    battery life speakers processing speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1963    laptop performance slow excel sheet minutes gb ram windows compatible                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1964    + years owner review.srceen quality good good speed bad next tab good frustrated                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1965    product quality superb backlite facilty amazing thanks product 36hrs particulary case happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1966    excellent product light weight easy louder fan noise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1967    product time amazon thanks ton only battery life expectation overall performance good product best features                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
1968    product warranty warranty differs amazon seller willing product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1969    laptop student fine editing stuff pubg lot gb ram sufficient laptop slow windows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1970    slow year old laptop boots huge disappointment hp amazon return v painful v v bad experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1971    nice product happy available options amazon poduct                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1972    worst performance rhe laptop first day seconds google chrome guys                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1973    holy crap wastage money dead slow slower snail sloth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1974    super laptop battery backup mark laptop hrs backup touch best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1975    amazing laptop hp personal use touch work smooth battery life good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
1976    laptop slow time works ok warranty product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1977    overall nice laptop daily use good speed screen disappointment bright % brightness setting                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1978    finer windows laptops sub 50k range basic optimization laptop solid buy gb ram ideal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1979    overall product good design look cool friends mad product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
1980    laptop evening hanged t                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
1981    usb port port month                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
1982    processor bit slow performance poor better laptop high processor work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
1983    use laptop keyboard pathetic able h m t y day day keyboard worse                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1984    little slow processing other features awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1985    hard disk year mild usage.laptop itself.very bad experience hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
1986    good laptop issues touch screen battery life heat                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1987    piece crap days malfunctioningi waste money waste time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1988    worth purchase issues processor slow touch screen good increase ram optimise processes                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
1989    great screen quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
1990    best laptop best part original window ms office life time sure battery up hours                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
1991    product best time                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1992    supper supper student laptop students office nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1993    sound card months nice laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
1994    good speed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1995    good quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
1996    laptop good mine defective                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
1997    great product hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
1998    great value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
1999    worth premium light weight                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2000    good finish sound battery life                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2001    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2002    laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2003    slow touch screen own mood                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2004    portable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2005    good feel keyboardms office preinstalledscreen quality excellentdislikesslow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2006    easy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2007    nice laptop price range laptop sexy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2008    expectations good performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2009    good budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2010    original os microsoft office.sent item it.replaced product working.exchange period                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2011    good product.for speed upgrade ram ssd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2012    worth price slow machine                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2014    horrible product slow enough ram touch disappointed absolute waste money 45k drain                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2015    middle small works apps closed dng things                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2016    good pc dedicated graphics card heavy gaming pc fabulous                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2017    speed goodgone few days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2018    good support system speaker issue due windows10 hp back end team great job                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2019    overall good product battery power bank extra battery case power                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2020    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2021    excellent device                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2022    laptop slow months purchase better processor ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2023    bad brand product opt other brand right item ur money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2024    system worst system hp ashamed subservient product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2025    good deal product hp best laptops degree price good move hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2026    ram better screen times lot glossy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2027    light weight great sound ok good home student                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2028    laptop commercial use gst number bill needful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2029    internet                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2031    stylish suave other laptop good purchase                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2032    good investment                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2033    screen quality better life screen experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2034    hp pavilion x360 14-cd0077tu light weight sleek design battery life touch screen good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2035    ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2036    average laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2037    os gb ram enough product minimum gb ram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2038    awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2039    screen quality good touch screen bettery life user friendly                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2040    slow months old laptop performance wise old                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2041    window                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2042    software                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2043    best touch screen laptops hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2044    value money performance ok                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2045    bad sound problems sound slow operations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2046    battery life less hours minimum hours                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2047    worthy better gb ram model                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2048    awsome speed cpu performance little slow star                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2049    touch screen receptive joy overall excellent product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2050    best laptop reasonable price better lenovo laptops                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2051    good laptop bit overpriced i3 processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2052    look perfect.but product fan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2054    keyboard months!very slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2055    slow speed applications access                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2056    item good warrany months warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2057    many issue slow working laptop lot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2058    slow device amazon hp pavilion service good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2059    performance expectation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2060    slow laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2061    slim light weight laptop good programming entertainment                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2062    awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2063    best price range value money product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2064    awesome great money value product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2065    bag                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2066    worst product.worst services disappointing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2067    good product study movie normal work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2068    best laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2069    good laptop large tablet                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2070    problem beginninghang problem last days                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2071    better price slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2072    battery life                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2073    good macbook macbook last couple year                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2074    good package price high key borad basic functions quality satisfactory rest few months                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2075    premium laptop awesome battery life terrific                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2076    lack additional gpu memory essential fast better rendering images model heavy gaming video editing pay grade laptop best office work ms office homre student free professional writers coders screen small inches laptop excellent battery backup minimum hrs wifi light innovative design hinge cherry top screen awesome clearity sound system finger print senser few glitches keyboard good fingers ports functionality unit usb ports close same side unsettling inches piece awesomeness                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2077    product specs laptop hard disk gbssd atleat gb ssd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2078    specs spec sheet gb ssd mine boots restarts 40s fingerprint reader accurate finger screen good battery backup descent hrs continous wifi occasional youtube msoffice emailing gaming main attraction weight folder good office goers gaming much updates attractive piece bag ms office mcafee year subscription                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2079    light weight screen awesome start fast battery life good value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2080    best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2081    best price looks goodand specs best pricewell hp omen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2082    price high worth money same specs india few rupees costly good aaa titles gta5 crew ultra settings fps native resolution                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2083    king computers world best macbook.just nice experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2084    kidneys better laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2085    ps4 pro                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2086    pc loptop graphic                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2087    dream                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2088    ps4 pro xbox x                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2089    ps4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2090    month laptop impressed performance amd radeon enough gaming games cs go gta fifa average fps medium settings worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2091    best product range laptop gb ram gb graphics cost 33,104rs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2092    satisfied performance laptop battery backup cost this.also % cashback month warranty laptop vqr .in helpful button.happy purchasing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2093    amazing product rate battery backup performance hours other good loptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2094    lap top features awesome product original month usage product keypad warranty.i disappointment product product appario retail private ltd sellers amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2095    original product hp good condition good good original graphics card invoice real hp product hp type warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2096    good medium range.medium graphics game runs professionals good students last hp best value product medium range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2097    lovely smooth laptop gaming dos ltsb windows smooth itgot price exchange old i3 2nd generation exchange price i3 2nd generation old laptop op dope                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2098    faulty part scratches top hp customer care other person name warranty days return.don't 38k offline store                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2099    product price gb ram gb graphics good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2100    team last order hp laptop product unable laptop hp service center new hardware separately.i laptop minute problem replacement time completed.please help product.please call urgent basis.thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2101    different dproduct extension warranty amazon hp website serial number hp customer care warranty issue date problem camera quality poor charger point system end system display quality moderate proper space monitor base product effective gb graphic card                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2102    good big screen good claritysound less system good battery good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2103    excellent delivery amazon smooth fast                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2104    laptop specification it.i specification satisfied cost os other softwares                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2105    best quality product 35k excellent time minutes same problem status laptop month                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2106    fake trust online productswithin year times key board complaintnd plastic material metal opening nd closing problem atleast good year november many problems lapy value money cost product same offline showrooms friends ur showrooms                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2107    good gta v                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2108    review bitter experience poor hardware quality.within months laptop hinge joint joint keypad screen normal closing laptop reason hinge joint able other many parts laptop keypad joint frame screen top frame).with brand hp good quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2109    one slow others little more i5 processor laptops home 5th one.after year scrape                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2110    laptop good gaming basic things only disappointed thing sound quality laptop best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2111    good price quality poor games fifa run medium graphics.need own licensed windows installation bit difficult                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2112    pros good.cons power button much butter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2113    poor performance windows boot small activities browser seconds acceptable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2114    brightness control display drivers.except good good gaming lag                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2115    offline                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2116    good pc workingvery good battery lifefull hd screen resolutioni issue date                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2117    good product warrenty inviose                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2118    sound low online streaming vedios amazon prime netflix zee5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2119    excellent product problems laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2120    asin b078mw5w3z hp laptop 6th gen core i3 6006u/8gb/1tb dos/2 gb graphics black sir billing printing recept                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2121    good productworking virtual machines timegre delivery                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2122    outstanding performance nic last months problem happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2123    good decent computing great students                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2124    great laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2125    ok mark great ram performance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2126    average product good gaming                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2127    quality good overall good laptop specification price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2128    awesome quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2129    good device                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2130    laptop good normal user support fhd display fast good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2131    laptop first laptop best laptop gaming other                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2132    laptop sound screen scratch vlc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2133    overall good product battery backup less hours                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2134    worth money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2135    sound low                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2136    good price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2137    worth product display bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2138    product good original bill                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2139    good value                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2140    product fabulous                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2141    nice product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2142    good product cd available box                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2143    usless product comparison price product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2144    more month issues                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2145    students laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2146    good product speaker volume low                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2147    laptop value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2148    great amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2149    best product price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2150    great product perfect price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2151    graphics good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2152    value money laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2153    nice model                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2154    product warranty hp centre                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2155    nice laptop daily uses                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2156    laptop good one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2157    laptop quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2158    battery backup lowest                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2159    good sound quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2160    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2161    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2162    laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2163    good procduct                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2164    bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2165    lenovo more years pathetic experience year battery problem screen problem keyboard problem laptop month keyboard tough lenovo customer support proactive guys mid range basic laptop 35k warranty time offer lapse original warranty period lot difference gb gb ram type processing fast gb graphic card useful high end website mid range games graphic form redeon site active best experience battery superb cell power battery % month full battery bit bulky quality top notch lenovo slim design satisfied customer support number times amazon delivery.hope review helpful thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2166    nice laptop great performance battery good laptop minor defect inside laptop laptop boolt free place freelyy nice product amazon laptop problem touchpad laptop warrenty replacement same problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2167    duplicate product laptop amd graphics lap top product quality poor top laptop cover soft lean                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2168    best price range more weeks graphics card gb ram best point laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2169    good gb ram one student office work radeon enough gamers games gta v fifa low graphics quality works happy studio video editing softwares adobe premiere pro stucks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2170    manufacturing defect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2171    happy amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2172    stadd.pro happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2173    laptop nearby retailer rs launch date dec 2017pros faster ram1 tb hybrid1080p displayradeon m530 graphic gamingconsno consi mid range gaming college work programming worth buying                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2174    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2175    excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2176    window bag laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2177    worst product waste money hp laptops dell better hp lenovo hp laptops services centers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2178    good product worth buy value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2179    product wireless network drivers linux mind                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2180    excellent laptop battery backup 4hr min time 2hr min full chrging fast laptop dout                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2181    slow months minutes slowwww processing frequency i3 processors frequency range ghz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2182    dudes best laptop best cost games high graphics laptop i5 gaming same specifications best value money local store low budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2183    great laptop better pictures                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2184    hp bs675tx gb ram total cost advantage bs658tx cost bs658tx higher ghz bs658tx win10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2185    laptop best price range gta good first laptop much heat much battery backup normal games battery discharges quick windows bit boot time long movie experience good sound clear good good condition body big issue ports good laptop needs gaming movie songs official work satisfied careful laptop first laptop laptop laptop big thing research best dual core problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2186    excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2187    excellent work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2188    sad item pc damage delivery time sound average                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2189    nice heating problem sound problem drivers extended warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2190    slow problem return                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2191    nice laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2192    everthing good speaker output low                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2193    laptopbecouse amd radeon graphics driver                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2194    good laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2195    nice quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2196    worst product repair last year slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2197    computer great expectations months problem screen steady day year warranty years additional warranty warranty period needful dealers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2198    excellent product date external power source heavy gaming graphics                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2199    month laptop performance good architecture related software                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2200    worth product hpsound quality awesome battery life good ok hrs video playbackamazon delivery nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2201    good product superb product hp.thanks amajon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2202    easy handy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2203    product good excellent good battery life                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2204    horrific experience product amazon product specifications product days replacement policy hard disk 11th day nightmarish experience service center 12th day hp days replacement big relief policy good service support experience service center service center dead arrival doa letter 13th day replacement seller experience time vigorous warning consumer forum non resposive customer support representative seller attention amazon product 20th day.i major working experience product slow start time minutes customer support normal duration product).#it latest processor latest generation high clock speed.it year old graphics.#though eye design keyboard heating problem noisy fan enough battery hours low game programming response service support online chat phone service center                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2205    m disappointed starting.just                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2206    high price tag level performance hp laptops disappointed product amazon dealer year purchase times worse input methods worst experience hp product one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2207    official hp world showroom.the moment disk utilisation percent time idle.contacted customer care same doa(dead arrival day replacement policy new laptop dealer.now new one minutes latest i7 8th gen cpu.the major drawback hdd rpm drive.after spending 70k machine nightmares this.even basic task long time ppt word java programs(written seconds compile.i shocked.now ssd hp hdd tb hdd data drive boot laptop boots machine true champso sure ssd boot windows that.then worth money.edit year purchase motherboard warranty free charges                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2208    performance bad ram ssd support hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2209    major drawback 940mx graphic card laptop laptops mx150 gb mx150 powerful gb 940mx                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2210    battery backup good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2211    laptop good.only drawback battery life                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2212    cool laptop battery backup good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2213    best laptop awesome configuration                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2214    seller rentopcdotcom poor quality items laptop hp elitebook 840g1 laptop spurious parts ram unbranded incorrect frequency mhz model charger spurious issues correct voltage screen dead pixels only grace appearance bad high ram hard disk/ ssd config guys spurious more money hard disk/ ssd ram charger battery spurious 20k levels bargain ram hdd user removable cover                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2215    laptop second battery arrane priority                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2216    bad worst months many problems                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2217    unusable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2218    laptop poor condition scratches small crack top lid okay one battery laptop good condition plug                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2219    worth product seller product finest quality worth product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2220    product good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2221    lap top good gb redeon graphics nvidia graphics amd radeon gb graphics waste integrated graphics intel uhd .one more thing gb graphics wrong tesdeon readon customer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2222    quality ssd place hdd hdd sata dvd drive caddy ram upgrade upto possible extended warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2223    best laptop hp quality cs range.from mid - gaming programming android studio great % minimum sound max 30watt power saver mode case windows standby hoto hours case full charge nokia usb standby 3 times.if full power beast 128/256 gb ssd gb ram good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2224    best laptop range+ better performance+ value money+ intel grphics better battery performance+processing speed developers)+ sound quality perfect but- low volume- amd radeon gb necessary intel graphics- performance weak battery beloww port damageable ports                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2225    products hp worst sale service laptop low quality material products warranty months experience laptop low battery backup hrs power backup screen resolutions                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2226    good laptop great configuration fast delivery amazon laptop quality great dell low camera decent video calls                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2227    good complaints thing good windows installation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2228    sound system good.but battery life low worth buying less price great specification.brightness problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2229    good configuration                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2230    excellent product core i5 latest 8th gen family look performance good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2231    product laptop good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2232    m happy new laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2233    nice quality laptop hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2234    nice product worth cost                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2235    amd graphics card same m330 month february fine battery chargr high graphics game high graphics application pros % min awesome gta medium graphics pubg offline stores                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2236    hp products plastic hinges.i laptop hinges times year rough use product normal use disappointed hp product laptops lighter less durable parts delicate product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2237    laptop 45k bag accessories offline store laptop months problem laptop laptop budget less 47k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2238    worth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2239    b e s t l a p t o p i n t h i s p r i c e r a n g e.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2240    good laptop genuine product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2241    dedicated gpu poor integrated gpu dolby digital sound system                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2242    laptop nice problem less month buying lap display friend similar model display month                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2243    good laptop hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2244    price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2245    extraordinary speed ram display laptop i7 super item sure keys least next 10years                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2246    worst product laptop amazon laptop sound slow laptop sure                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2247    value money deal entry level laptop job sites email single excel sheet people multitasking lot sites sheets simultaneously.laptopscreen size inchclock speed gbhard disk capacity system windows 10os version windows homegraphic                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2248    processor slow numbers usb ports                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2249    good laptop daily use normal use net                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2250    laptopall other brands                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2251    os laptop self months service center happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2252    better beginners s stylish n slim                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2253    today warranty hp website month surprising new laptop hp warranty info                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2254    laptop problemmy fault rupeesit much lagging nowi laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2255    good common tasks good video slow motion,.i processor lags                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2256    product dissatisfaction product wifi connection build product best range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2257    office work movies.sound good external speakers movies dialogues speakers crisp bass moderate                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2258    windows problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2259    best seller site good good pice price worthbest home                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2260    value money issues time packed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2261    good excellent windows uninstall                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2262    unable microsoft options show message m os drives concern                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2263    sound quality afraid laptop friends amazon product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2264    good quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2265    pirated os windows performance satisfactory                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2266    product employee much quality wise product ok                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2267    day laptop m hp toll free problem passcode understanding                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2268    product months warranty full year warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2269    product lower hp better product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2270    lot quality wrost laptop intel other hp brand                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2271    laptop online google youtube display pc problem power laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2272    daughter laptop easy problem performance good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2273    waste money don t                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2275    value moneyi hp dos laptop great indian festival offer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2276    useful                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2277    slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2279    laptop quality good work battery backup low                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2280    processor ghz ghz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2281    normal screen budget goodwindows                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2282    heating battery life max hr                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2283    average quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2284    value money slower                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2285    viry good product price amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2286    excellent product strong good ruf use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2287    system slow display blank                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2288    ok                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2289    laptop charging.my laptop warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2290    purchase bill hardcopy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2291    poor quality charger months                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2292    laptop best uske sath cd nhi aayi h h motherboard ki                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2293    value money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2294    wonderful laptop hp price range                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2295    slow time processing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2296    past months work                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2297    time system hot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2298    plzzzzzzzzz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2299    worst product hot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2300    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2301    auto                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2302    invoive                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2303    price good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2304    nice experience                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2305    nice long life                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2306    bad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2307    awesome                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2308    gooooddddd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2309    speed slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2310    slow processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
2311    ms office                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2313    battery life                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2314    bad prodect                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2315    happy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2316    bad product waste money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2317    good quality                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2318    product good checkout problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2319    laptop days window laptop performance pathetic more mins restart one low budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2320    amazing product amazan amazan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2321    parts driver cd ni mili na hi window                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2322    iske saath windows nhi denge ye laptop bhut jaldi heat ho jata hai aur ye bhut slow bhi chalta hai                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2323    software vlc player media player windows laptop.while model 1st drivers hp website amd graphic card blue screen money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2324    amazon amazing features lowest price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2325    delicate indicator off good budget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2326    specs site specs % matches little bucks market place os installations n drivers win8.1,working smooth lags battery charging period fast more mixed useage media n online browsing)wifi superfast.excellent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2327    good laptop price thanks amazon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2328    patheric laptop hp laptop feel uears old mod range comupter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2329    problem laptop driver usb port very beginning                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2330    condion hp laptop exelent vedio working.there big prblm vedio showing.i hope prompt action                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2331    value money product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2332    worst lap                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2333    good product good quality time deliverybest price amazon products                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2334    good picture resolution good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2335    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2336    driver issue                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2337    good hardware functions lightweight touchscreen windows os seller product description setup guide various features windows operating system                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2338    product tuesday good laptop lover price amy pakeging product good thanku amazon happy service                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2339    laptop work properly.some thing wrong system                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2340    laptop performance goodhitshink fan available laptopram slot ddr4charging quick                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2341    slow processor lot lag functioning                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2342    wrost product amazon internet restart processor ghz ghz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
2343    crap product product service price outside ex windows people cd goody bag less amount compare                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2344    fine slow processor patience task                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2345    brand duribility use business purposes faster installment data browser dual core behalf case windows free dos work laptop equal dual core processor laptop.that laptop.it windows dos processor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
2346    laptop last friday.it bad.while laptop more                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2347    laptop okey good driver cd dvd product bad % cash visa debit card cod amazon matter thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2348    overall sytem good minut laptop restart quality good bad product money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2349    screen laptop short time item cost rs.4000 screen warranty                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2350    warranty papers user manual box important papers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
2351    laptop total water money minutes os many times same problem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2352    laptop year old hp laptop sound camera quality poor                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2353    dear need invoices leptop hp bw098au                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2354    nice product thanks amazon discounts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2355    change coast minimum change                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2356    one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2357    best buy 25k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2358    operating system good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2359    nice                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2360    emi process acchha hai ki nei laptop good qs agar mjhe emi axis bankke debit card se lena hai tho kya monthly mere bank rehne se process lap le paunga                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2361    service product other                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2362    genuine product laptop price windows10 installed.this browsing ms office.heavy gaming configuration.thank                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2363    product virus time life horrid machine                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2364    laptop good product key microsoft                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2365    microsoft vlc media laptop basic thing laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2366    months use                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
2367    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2368    good product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2369    cd games                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
2370    good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2371    past month.pros charging workingsleek designnice speakercons tab mode fan outlet coverd back screen.it warm bed fan warm air user fan space.if purpose stylus pen great average entertainment purposes price                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2372    premium fit features model good combination form functionality only grouse lag own few weeks durability particular piece replacement piece original one little worried experience hp products great past one                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2373    excellent productlike best laptop fast                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2374    enormous heating slow great performance wise budget laptop sound month use way product pathetic disappointed time amazon.will product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
2375    wibdows version auto update everyday net pack personal work2 able further disk partitions need.3 antivirus anti malware anti adware pack trial version                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
2376    months fan big shhooooo sound heating left side hp technician fan problem motherboard battery pathetic costly laptop such repairs.i replacement hp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
2377    laptop month straight line converting heartbeat amazon hp support video remote technician problem more week resolution clueless problem resolution helpless                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2378    good star                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2379    best product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2380    good hybrid necessary features dell                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
2381    price best laptop                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2382    good processing slow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
2383    superb good battery backup awesome screen mode easy browsing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
2384    bad battery backup dell i7 good same prices                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2385    laptop few weeks stylus few days laptop times.worst product hp desk ticket response.amazon quality products money                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2386    disappointed paper specs impressive real time performance v slow v v disappointed sure problem unit model                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
2387    days purchase experience electric shock laptop power supply                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2388    pathetic product first time box system fan 90b error message amazon tedious process hp amazon useless product                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2389    channel drtechnno utube detailed review model.i sound stylus screen touchpad independent look                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
2390    sound system one supporting.worst experience amazon support                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
2391    best quality good                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
2392    less configurations worth laptop best                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
Name: cleaned_noun_adj_review, dtype: object
In [44]:
df
Out[44]:
Reviews clean_text rating len_reviews cleaned_noun_adj_review
0 There is no sound in the laptop even after installing necessary drives.Please suggest solution otherwise I will return the item.\n sound laptop even instal necessari drivespleas suggest solut otherwis return item\n Neutral 20 sound laptop necessary drives.please solution item
1 Amazon showing wrong pictures, the keyboard will also have silver colorIf anyone read this review to buy this laptop, it might be useful\n amazon show wrong pictur keyboard also silver colorif anyon read review buy laptop might useful\n Positive 23 amazon wrong pictures keyboard silver colorif review laptop useful
2 I would request customers who have brought items on EMI through SBI card pleasr check your statement details as I had brought this prouduct on EMI of 9666/- including interest but bank is charging additional interest on this. 9666 + 330. Actually if they had to charge then they should have charged either 9666 per month or 9444+interest for three month. I would request Amazon also to look into the matter so that customers can freely use SBI cards for EMI payment.\n would request custom brought item emi sbi card pleasr check statement detail brought prouduct emi 9666 includ interest bank charg addit interest 9666 330 actual charg charg either 9666 per month 9444interest three month would request amazon also look matter custom freeli use sbi card emi payment\n Positive 82 customers items sbi card pleasr statement details prouduct interest bank additional interest month month amazon matter customers sbi cards payment
3 I'm reviewing this laptop after 4 month of use.Pros:- Overall looks seems interesting.- Screen size and display is awesome.- 3 USB ports, 1 HDMI, 1 RJ45 connector, USB 3.5 JACK, SD card slot, CD Rom.- With Intel i3 7th gen this laptop works fine with all applications and browsing experience is too good.Cons:- You need to wait a minute after starting this laptop to be able to work. Else, it starts to hang.- Full size keyboard. The numeric buttons on the right should not be present.Overall verdict:Decent laptop at this price.\n im review laptop 4 month usepro overal look seem interest screen size display awesom 3 usb port 1 hdmi 1 rj45 connector usb 35 jack sd card slot cd rom intel i3 7th gen laptop work fine applic brows experi goodcon need wait minut start laptop abl work els start hang full size keyboard numer button right presentoveral verdictdec laptop price\n Positive 94 laptop month use.pros:- overall looks interesting.- screen size display usb ports hdmi rj45 connector usb jack card slot cd rom.- intel i3 7th gen laptop applications browsing experience good.cons:- minute laptop able hang.- full size keyboard numeric buttons right present.overall verdict decent laptop price
4 Let me start with my message stating Very unsatisfactory product. It is i3 7th gen with 4gb Ram but it is slower than a celeron processor my other laptop. Infact cant be compared as simple basic task like sending mail cant work in this laptop forget the gaming etc. VERY VERY SLOW . 100% memory and 100 % DISK usage show all the time in if u open task manager.I mailed HP looking at the messages from HP from other reviews. It seemed to be quite promising that someone from HP customer care will take the laptop solve it or replace it sad thing no one even bothered to reply to my mail.So sick HP service.\n let start messag state unsatisfactori product i3 7th gen 4gb ram slower celeron processor laptop infact cant compar simpl basic task like send mail cant work laptop forget game etc slow 100 memori 100 disk usag show time u open task manageri mail hp look messag hp review seem quit promis someon hp custom care take laptop solv replac sad thing one even bother repli mailso sick hp service\n Negative 116 message unsatisfactory product i3 7th gen gb ram slower celeron processor other laptop infact simple basic task mail laptop gaming slow % memory % disk usage show time open task manager.i hp messages hp other reviews promising hp customer care laptop sad thing one mail.so sick hp service
5 I bought this laptop a day ago.It is mentioned in amazon that this laptop has lifetime validity for ms office.But actually it is not.We need renew it every year.Feeling very very disappointed with Amazon for mentioning a wrong feature.\n bought laptop day agoit mention amazon laptop lifetim valid ms officebut actual notw need renew everi yearfeel disappoint amazon mention wrong feature\n Negative 39 laptop day ago.it amazon laptop lifetime validity ms office.but not.we year.feeling disappointed amazon wrong feature
6 I have purchase this laptop and use from last 20 days. Performance wise it is very slow .bulky and not comfortable for everyday use.Suggestions : You will get better laptop in the same price.\n purchas laptop use last 20 day perform wise slow bulki comfort everyday usesuggest get better laptop price\n Positive 35 purchase laptop use last days performance wise slow comfortable everyday use.suggestions better laptop same price
7 Bloody product doesn't power on at all... When called customer support they reply so adamantly...\n bloodi product doesnt power call custom support repli adamantly\n Positive 15 bloody product customer support
8 display quality and speed both are very bad.\n display qualiti speed bad\n Negative 8 display quality speed bad
9 Kindly update about products it's original by HP?Find the photos and confirm the same.I am using currently i5 and i3 but this one looking different\n kindli updat product origin hpfind photo confirm samei use current i5 i3 one look different\n Neutral 25 products original hp?find photos same.i i5 i3 different
10 On first Boot it took around 2.30 hrs after that never booted always hanged during booting totally waste of money and tension of not returning this trashPro: Advice goto showroom first try lappy dn buy because for online marketing. They are just selling crap\n first boot took around 230 hr never boot alway hang boot total wast money tension return trashpro advic goto showroom first tri lappi dn buy onlin market sell crap\n Negative 46 first boot hrs waste money tension trashpro advice goto showroom lappy dn online marketing crap
11 Please go with another brand,for mine system is crashed within 6 hours of delivery of laptop.\n pleas go anoth brandfor mine system crash within 6 hour deliveri laptop\n Negative 16 brand mine system hours delivery laptop
12 First of all the performance was nothing to write home about.I spent more time downloading and installing updates than actually using the laptop.It was dead slow too. It altogether stoppedworking after 7 months. I contacted HP customer care and they advised software recovery.I tried the steps advised by them still it is not booting.The product is still under warranty and it was used only for online classes and basic browsing IE, no gaming or other heavy stuff.I requested a service visit but they declined saying that for software issues service visit can not be arranged.I don't know what is the use of Guarantee and buying a licensed Windows version .As I am living at a remote place with no nearby service centre,I am left with no option other than dumping the item with this kind of support from HP.Should serve as as eye opener for any one planning to go for an HP laptop.After almost one month the laptop is still not repaired.Should serve as an indicator of the much pom-pom Ed HP service.My advise is please desist from buying this crapUpdate:Now HP says the defect is on hard disk. The service engineer replaced the hard disk. However the USB media I bought from HP shelling out Rs. 1100 is not working. Finally the service engineer installed windows by cloud recovery. (however HP has promised a free replacement of the recovery media). Subsequently the keypad started functioning erratically. The lappy is still at the service centre. I don't know what to make of the whole process\n first perform noth write home abouti spent time download instal updat actual use laptopit dead slow altogeth stoppedwork 7 month contact hp custom care advis softwar recoveryi tri step advis still bootingth product still warranti use onlin class basic brows ie game heavi stuffi request servic visit declin say softwar issu servic visit arrangedi dont know use guarante buy licens window version live remot place nearbi servic centrei left option dump item kind support hpshould serv eye open one plan go hp laptopaft almost one month laptop still repairedshould serv indic much pompom ed hp servicemi advis pleas desist buy crapupdatenow hp say defect hard disk servic engin replac hard disk howev usb media bought hp shell rs 1100 work final servic engin instal window cloud recoveri howev hp promis free replac recoveri media subsequ keypad start function errat lappi still servic centr dont know make whole process\n Positive 257 performance about.i more time installing updates laptop.it slow months hp customer care software recovery.i steps product warranty online classes basic browsing ie gaming other heavy stuff.i service visit software issues service visit arranged.i use guarantee windows version remote place nearby service centre option other item kind support hp.should eye opener planning hp laptop.after month laptop indicator much pom pom ed hp advise crapupdate hp defect hard disk service engineer hard disk usb media hp rs service engineer windows cloud recovery hp free replacement recovery media keypad lappy service centre whole process
13 Pros1) sound quality is good2) picture quality is satisfactory3) camera is average, OK in this price range4) keypad is comfortable5) life time validity for windows 10 home and MSO student.Cons1) anti virus macafee is trial version for 30 days2) opening of applications are slow, better to go for i5.3) battery is not easily removable.NoteValue for money laptop. But compromised in performance.\n pros1 sound qualiti good2 pictur qualiti satisfactory3 camera averag ok price range4 keypad comfortable5 life time valid window 10 home mso studentcons1 anti viru macafe trial version 30 days2 open applic slow better go i53 batteri easili removablenotevalu money laptop compromis performance\n Positive 61 pros1 sound quality good2 picture quality satisfactory3 camera average price range4 keypad comfortable5 life time validity windows home mso student.cons1 anti virus macafee trial version days2 opening applications slow better i5.3 battery removable.notevalue money laptop performance
14 Good product.Awesome battery backupWorth for moneySimple drawback is that it doesn't have antiglare display\n good productawesom batteri backupworth moneysimpl drawback doesnt antiglar display\n Positive 14 good product.awesome battery backupworth moneysimple drawback antiglare display
15 Hello Folks,The product review shared by other always help me, buy a product so It is my responsibility to write the review.This laptop I bought 2 weeks ago. Till now my observations are:Pros:Light in weight.Single coat so appearance is nice.Keyboard is robustSound quality is good.Cons:If you want speed this is not a product to buy.Charging speed is not great.Touch pad is not that smooth.Laptop soon become very hot.Overall if you do not want to play games & budget is less than 30 k. You can give this product a thought.Thanks for reading Hope it will be helpful.\n hello folksth product review share alway help buy product respons write reviewthi laptop bought 2 week ago till observ areproslight weightsingl coat appear nicekeyboard robustsound qualiti goodconsif want speed product buycharg speed greattouch pad smoothlaptop soon becom hotoveral want play game budget less 30 k give product thoughtthank read hope helpful\n Positive 97 folks product review other product responsibility review.this laptop weeks observations pros light weight.single coat appearance nice.keyboard robustsound quality good.cons speed product speed great.touch pad smooth.laptop hot.overall games budget less k. product thought.thanks hope helpful
16 Worse purchase I ever had in Amazon. I won't complain anything about Amazon, but here hp is providing low quality product. The laptop's display got damaged within 1 month without any physical damage. When I asked for the warranty they rejected it saying it's not manufacturing defect.it's actually a manufacturing defect due to to low quality parts and hp is blaming customer for such occurance.Don't ever trust in hp products..\n wors purchas ever amazon wont complain anyth amazon hp provid low qualiti product laptop display got damag within 1 month without physic damag ask warranti reject say manufactur defectit actual manufactur defect due low qualiti part hp blame custom occurancedont ever trust hp products\n Negative 70 worse purchase amazon amazon hp low quality product laptop display month physical damage warranty manufacturing defect low quality parts hp customer such hp products
17 would recommend dell laptop over HP after buying this (i have used dell and they are far better than HP)only two major advantages of this laptopms officegreat speakerthe display is low quality, system is slowi have dell also with an older configuration and it performs a lot better\n would recommend dell laptop hp buy use dell far better hponli two major advantag laptopm officegreat speakerth display low qualiti system slowi dell also older configur perform lot better\n Positive 48 dell laptop hp dell better major advantages laptopms officegreat speakerthe display low quality system slowi older configuration lot better
18 Nice sound quality ,nice backup of 4.5 hrs ,value for money\n nice sound qualiti nice backup 45 hr valu money\n Positive 11 nice sound quality nice backup value money
19 This laptop is dead slow. I am using an MSI laptop 2013 model which is far better than this. Actual laptop cannot be this much slow, I am sure this is not original. Please don't buy through online. I am into ecommerce side but I would say never but through online. I replaced the one I received first but replaced one also not bad. I feel I will break this, I have to wait to open a new tab also.. Sad.\n laptop dead slow use msi laptop 2013 model far better actual laptop cannot much slow sure origin pleas dont buy onlin ecommerc side would say never onlin replac one receiv first replac one also bad feel break wait open new tab also sad\n Negative 82 laptop slow msi laptop model better actual laptop slow sure original ecommerce side online one one bad new tab sad
20 Value for money\n valu money\n Neutral 3 value money
21 When system is turned on it takes much time say 20 mins to turn on, provided that I have installed minimal softwares. And restart of system requires more than 1 hr stating that all the updates are running in the background.Sql server will be the only heavy weight software installed, and more than 250gb of hard disk is free. Win 10 preinstalled, i3 7th gen processor. Does anyone face the same issue.\n system turn take much time say 20 min turn provid instal minim softwar restart system requir 1 hr state updat run backgroundsql server heavi weight softwar instal 250gb hard disk free win 10 preinstal i3 7th gen processor anyon face issue\n Positive 72 system much time mins minimal softwares restart system more hr updates background.sql server only heavy weight software more gb hard disk free i3 7th gen processor same issue
22 Awesome looking laptop....i don't know why this much negative reviews.\n awesom look laptopi dont know much neg reviews\n Neutral 10 awesome laptop much negative reviews
23 I am really very very disappointed with the performance of this laptop. From the first day till now it never worked normally......lots of hanging issue. For every task it will take minimum of double time and after that also it will be working slowly. Even if I am typing something it will appear after few seconds. I m really tired up of using this laptop and regret of buying this. Look wise it's awesome battery life also average but one and only major problem with this laptop is it get stucked after any command given it includes from starting the laptop to opening your files to typing anything......I don't know why I bought this laptop ...... seriously not expected from Amazon to deliver the product like this....I sometimes feels that it's even original or not ??\n realli disappoint perform laptop first day till never work normallylot hang issu everi task take minimum doubl time also work slowli even type someth appear second realli tire use laptop regret buy look wise awesom batteri life also averag one major problem laptop get stuck command given includ start laptop open file type anythingi dont know bought laptop serious expect amazon deliv product like thisi sometim feel even origin \n Negative 136 disappointed performance laptop first day lots issue task minimum double time few seconds m laptop regret wise awesome battery life average only major problem laptop command laptop files laptop amazon product original
24 Worst product from HP. Performance is too slow. Applications hangs frequently. I got defective one in which speaker head phone was not working. Warranty was also not showing as one year.\n worst product hp perform slow applic hang frequent got defect one speaker head phone work warranti also show one year\n Negative 31 worst product hp performance slow applications defective speaker head phone warranty year
25 Value for money is good but sounds quality is normal and battery life is only three hours. In a nutshell this laptop is good in its price range. Thank you.\n valu money good sound qualiti normal batteri life three hour nutshel laptop good price rang thank you\n Positive 30 value money good quality normal battery life hours nutshell laptop good price range
26 First of all the product packing was just great..Second , the laptop is gud.Pros-Anti glare display is just great.Keyboard is gud .Camera is avg.Multitasking is just great.Sound is loud and clear.Laptop is lightweight.Cons-Lags a bit sometimes.Maybe an upgrade of SSD drive will improve performance.For gamers RAM nd Graphics needs to be upgraded.Good for medium gaming.Overall a great laptop in this budget of 31k.\n first product pack greatsecond laptop gudprosanti glare display greatkeyboard gud camera avgmultitask greatsound loud clearlaptop lightweightconslag bit sometimesmayb upgrad ssd drive improv performancefor gamer ram nd graphic need upgradedgood medium gamingoveral great laptop budget 31k\n Positive 63 product packing great laptop gud.pros anti glare display great.keyboard gud .camera great.sound loud clear.laptop lightweight.cons bit upgrade ssd drive gamers ram nd graphics upgraded.good medium gaming.overall great laptop budget 31k
27 In a single word- it's worth. Initially you may feel that is slow but after updates it will work smoothly.\n singl word worth initi may feel slow updat work smoothly\n Positive 20 single word- worth slow
28 I received this product on 9th May 2019, as I've not installed any app but it is too slow. Whatever I open it takes too much time to open. Better to go with Dell or Lenovo. Not satified with this kind of product from HP.\n receiv product 9th may 2019 ive instal app slow whatev open take much time open better go dell lenovo satifi kind product hp\n Positive 45 product 9th may app slow much time dell lenovo kind product hp
29 I have brought this product almost 1 month back and also submit the complaint on his slow performance. Also I have taken remote support from hp help desk service center but no improvement. Hence they sending there home assistance who is still not turn over and making arrangements as per my availability.Currently seeking hp revert. Or needs to return back such faulty product.\n brought product almost 1 month back also submit complaint slow perform also taken remot support hp help desk servic center improv henc send home assist still turn make arrang per availabilitycurr seek hp revert need return back faulti product\n Positive 63 product month complaint slow performance remote support hp desk service center improvement home assistance arrangements hp revert such faulty product
30 Very slow laptop. Bad purchase now stuck with it. How do I sell this piece of junk?\n slow laptop bad purchas stuck sell piec junk\n Negative 17 slow laptop bad purchase piece junk
31 Super quick delivery as always from Amazon.Have been using this laptop everyday for about 8hrs with not a single issue faced till date.Not sure about its performance for gaming as I have never used it for gaming.Battery life is also pretty good. 4-5hrs with the power saver mode on and mildly heavy usage.Easy to carry around as does not weigh too much and its very compact as well.Overall performance is good with reasonably heavy usage but I have not tested with heavy usage, programming and gaming.My opinion: PRETTY REASONABLE, GOOD PERFORMANCE, LIGHT WEIGHT, VALUE FOR MONEY.\n super quick deliveri alway amazonhav use laptop everyday 8hr singl issu face till datenot sure perform game never use gamingbatteri life also pretti good 45hr power saver mode mildli heavi usageeasi carri around weigh much compact welloveral perform good reason heavi usag test heavi usag program gamingmi opinion pretti reason good perform light weight valu money\n Positive 96 quick delivery amazon.have laptop single issue date.not sure performance gaming gaming.battery life good power saver mode heavy usage.easy much compact well.overall performance good heavy usage heavy usage programming gaming.my opinion reasonable good performance light weight value money
32 Good laptop with a very beautiful colour and design.. WINDOWS 10 needs upgrade .. after completing of all updation it runs fast..I am very satisfied with this laptop..\n good laptop beauti colour design window 10 need upgrad complet updat run fasti satisfi laptop\n Positive 28 good laptop beautiful colour design windows needs upgrade updation satisfied laptop
33 Overall laptop is goodA colour that is not common.(standard)Display is superb depend upon the quality you see.Mcafee antivirus for 30 day trial.Performance - goodDisplay- excellentStorage- plenty and enoughGood for programming.\n overal laptop gooda colour commonstandarddisplay superb depend upon qualiti seemcafe antiviru 30 day trialperform gooddisplay excellentstorag plenti enoughgood programming\n Positive 30 overall laptop gooda colour common.(standard)display superb depend quality see.mcafee antivirus day trial.performance excellentstorage- plenty enoughgood programming
34 Not as per expectations built quality is very poor not perform as per specification. I think always buy from hp outlet\n per expect built qualiti poor perform per specif think alway buy hp outlet\n Negative 21 expectations quality poor specification hp outlet
35 Review after using 15days...Too slowwwww, worst product by HP, no response by customer care of Amazon.Go with dell or lenovo or any other brand but not with HP or Amazon service.Laptop on krk so jao 😴😴😴😴Can get better laptop in same price.\n review use 15daystoo slowwwww worst product hp respons custom care amazongo dell lenovo brand hp amazon servicelaptop krk jao 😴😴😴😴can get better laptop price\n Positive 42 review slowwwww worst product hp response customer care amazon.go dell lenovo other brand hp amazon service.laptop krk jao better laptop same price
36 Good product and meets my requirement\n good product meet requirement\n Positive 6 good product requirement
37 In first place Laptop got delayed while delivering it to me. We called amazon told upfront that we don’t need and when we are trying to return the same without opening the packaging amazon not taking the amazon back. It is just selling the High price products to customers just with images and text and these is no way to return it back if you don’t need or don’t like it or performance is not at your expectations.Poor amazon policy , if you buy this you need to buy with your own risk and it will be final sale and there is no way to return and live with it.When we are trying to down load or upload or trying to install our first software it is Super slow.When we are trying to view YouTube videos and Dragged the video here and there to see the performance and laptop is kind of stuck and responding after 1 or 2 mins. Even when you make video in full screen mode it will take a while to pop up.What not there several performance issues with this laptop Never ever buy this and Don’t Don’t Don’t Don’t Buy this.When we are extracting 500Mb file from zip , Memory reads and memory utilization going up to 100% and you can’t use any application and Dam super SlowUpdated comments on 27-jul-2019 : we have requested for technician visit and tech guy confirmed that there is a issue finally amazon provided replacement and replacement is more worst you can see The pics which I have updated in the review.\n first place laptop got delay deliv call amazon told upfront don’t need tri return without open packag amazon take amazon back sell high price product custom imag text way return back don’t need don’t like perform expectationspoor amazon polici buy need buy risk final sale way return live itwhen tri load upload tri instal first softwar super slowwhen tri view youtub video drag video see perform laptop kind stuck respond 1 2 min even make video full screen mode take pop upwhat sever perform issu laptop never ever buy don’t don’t don’t don’t buy thiswhen extract 500mb file zip memori read memori util go 100 can’t use applic dam super slowupd comment 27jul2019 request technician visit tech guy confirm issu final amazon provid replac replac worst see pic updat review\n Positive 263 first place laptop amazon upfront t need same packaging amazon amazon high price products customers images text way t need don t performance expectations.poor amazon policy own risk final sale way it.when load upload first software youtube videos video performance laptop stuck mins video full screen mode while several performance issues laptop don t don t don t don t buy this.when mb file zip memory memory utilization % application dam comments 27-jul-2019 technician visit tech guy issue amazon replacement replacement worst pics review
38 Avoid buying this laptop. It looks like someone has put a duplicate processor and RAM inside it. It is painfully slow. I am considering to throw it away and buy a better laptop from Market.\n avoid buy laptop look like someon put duplic processor ram insid pain slow consid throw away buy better laptop market\n Neutral 35 laptop duplicate processor slow better laptop market
39 Product activation key missingVery very very very slowI'm totally pissed up...Plz never ever buy this product for God sake\n product activ key missingveri slowim total piss upplz never ever buy product god sake\n Negative 19 product activation key missingvery slowi'm pissed product god sake
40 Very bad. System is very slow. Getting hanged\n bad system slow get hanged\n Negative 10 bad system slow
41 After using it for 2 weeks i am writing my review.It is very nice and very useful product. It is for daily use. Battery life is good. It get charged very fast. Screen quality is awsome. I think that camera quality should little bit improve otherwise everything is okey\n use 2 week write reviewit nice use product daili use batteri life good get charg fast screen qualiti awsom think camera qualiti littl bit improv otherwis everyth okey\n Positive 49 weeks review.it nice useful product daily use battery life good screen quality awsome camera quality little bit okey
42 I love this product. Packing quality is also so good.\n love product pack qualiti also good\n Positive 10 product quality good
43 Bootup process is very very slow.MS office & Antivirus trial period was over when I bought.There is no drive partition (Only 'C' drive). Battery backup time is 2 - 2.5 hours only.Wifi sucks my jio 4g data very fastly.HP should mention USB 2 port & USB 3 port type. 'C' type USB port is missing.Keyboard letters are very thin & difficult to read and type in low light(HP should provide keyboard back light).HP should relocate the heat vents instead of under display area.When using long time, bottom area of the display screen is overheating.It may affect screen and laptop is too heavy to lift.Otherwise nice laptop.\n bootup process slowm offic antiviru trial period boughtther drive partit c drive batteri backup time 2 25 hour onlywifi suck jio 4g data fastlyhp mention usb 2 port usb 3 port type c type usb port missingkeyboard letter thin difficult read type low lighthp provid keyboard back lighthp reloc heat vent instead display areawhen use long time bottom area display screen overheatingit may affect screen laptop heavi liftotherwis nice laptop\n Negative 107 process slow.ms office antivirus trial period drive partition c drive battery backup time hours only.wifi jio g data usb port usb port type c type usb port letters thin difficult low light(hp keyboard light).hp heat vents display area.when long time bottom area display screen screen laptop heavy nice laptop
44 Just..... Kaam chalauHaving heating issue while charging.So much hanging problem... In just normal daily use\n kaam chalauhav heat issu chargingso much hang problem normal daili use\n Negative 15 kaam heating issue much problem normal daily use
45 1-Before arrived My Order HP Laptop i got a message someone will come for Installation but nobody came2- I have read before buy clearly mentioned will be replacement within 10 day's if i don't with performance3- I really don't like voice quality and picture quality and I called up for replacement another productbut i got to know through cus care it can be replace same one if any default but can't replace with other product which no where mentionedReally Really disappointed as regular customer since many year"s\n 1befor arriv order hp laptop got messag someon come instal nobodi came2 read buy clearli mention replac within 10 day dont performance3 realli dont like voic qualiti pictur qualiti call replac anoth productbut got know cu care replac one default cant replac product mentionedr realli disappoint regular custom sinc mani years\n Negative 89 order hp laptop message installation came2- buy replacement day performance3- voice quality picture quality replacement productbut cus same default other product regular customer many year"s
46 Gadget Guys.. Here's a short review of the above model Lappy that I bought today.Design - Very GoodWeight - Surprisingly very light from HPSpecs - Nice config in such a decent budgetFHD Screen - a New addition and quite good resolution especially with Anti-GlareBattery - the most interesting aspect of this Lappy, charged it twice as used heavily to test it. Gives a pretty good backup of 4hrs. Very much satisfiedi3 and 4GB DDR4 combo is performing more than I expected. Initial booting and updates are gonna make feel that the Lappy is slow, but give it time to setup, later Lappy just flies.Overall a pretty good Lappy at an affordable price 😊👍And all this coming in a package of 26.5k in offer after applying Credit Card offers\n gadget guy here short review model lappi bought todaydesign goodweight surprisingli light hpspec nice config decent budgetfhd screen new addit quit good resolut especi antiglarebatteri interest aspect lappi charg twice use heavili test give pretti good backup 4hr much satisfiedi3 4gb ddr4 combo perform expect initi boot updat gonna make feel lappi slow give time setup later lappi fliesoveral pretti good lappi afford price 😊👍and come packag 265k offer appli credit card offers\n Positive 128 gadget guys short review above model lappy today.design goodweight light hpspecs nice config decent budgetfhd screen new addition good resolution anti - glarebattery interesting aspect lappy good backup satisfiedi3 gb ddr4 combo more initial booting updates lappy slow time setup lappy good lappy affordable price package 26.5k offer credit card offers
47 I just bought, this product from Amazon not too much satisfied from product in range of 31k. Speaker quality is very poor, screen quality is not up to the mark, Not good from my side.But thankful to Bajaj finserv to fulfill our financial need.. 😀 Thnx Bajaj and Amazon\n bought product amazon much satisfi product rang 31k speaker qualiti poor screen qualiti mark good sidebut thank bajaj finserv fulfil financi need 😀 thnx bajaj amazon\n Positive 49 product amazon satisfied product range 31k speaker quality poor screen quality mark good side.but thankful bajaj finserv financial need thnx bajaj amazon
48 You get what you pay for. The modest pricing is reflective of the responsiveness of the system. However, it does the job as an entry level laptop for basic browsing, reading or as a secondary laptop for use by children.Biggest pros are the screen size and the extended keyboard with a dedicated number pad.Biggest cons would be the slowness of the laptop and the absence of a backlit keyboard (though the latter was known before purchase).\n get pay modest price reflect respons system howev job entri level laptop basic brows read secondari laptop use childrenbiggest pro screen size extend keyboard dedic number padbiggest con would slow laptop absenc backlit keyboard though latter known purchase\n Positive 76 modest pricing reflective responsiveness system job entry level laptop basic browsing reading secondary laptop use children.biggest pros screen size extended keyboard dedicated number pad.biggest cons slowness laptop absence backlit keyboard latter purchase
49 This one is non performing laptop .Every application is hanging. It does not properly shut down.Microsoft office is quite slow. Sometimes it does not start properly & starts after 10 mins. I have asked Amazon to return it.I wish I should have not purchased this from Amazon.This is my worst experience with Amazon. They are now not taking back the laptop & they do not return & refund my money.\n one non perform laptop everi applic hang properli shut downmicrosoft offic quit slow sometim start properli start 10 min ask amazon return iti wish purchas amazonthi worst experi amazon take back laptop return refund money\n Neutral 72 one non laptop application down.microsoft office slow starts mins amazon it.i wish amazon.this worst experience amazon laptop money
50 This is very slow laptop and slower than my 6 year i3 laptop which i had purchased it almost same price.\n slow laptop slower 6 year i3 laptop purchas almost price\n Neutral 21 slow laptop slower year i3 laptop same price
51 very worst product . pathetic laptop . hangs every day 8 to 10 times . waste of money . seller not willing to take back within return period . amazon these kind of sellers will surely take down your reputation in market\n worst product pathet laptop hang everi day 8 10 time wast money seller will take back within return period amazon kind seller sure take reput market\n Positive 42 worst product pathetic laptop hangs day times waste money seller willing return period kind sellers reputation market
52 Please dont buy this junk product. Even I dont want to rate single star, but no other choice, i gave 1 star.Starting from booting to everything was bad... booting nearly 30-40 mins, if you click any app, it will take its own time to come back, sometimes, not coming back at all. I can't believe its i3 and 4 GB ram. very very very worst product ever I seen.even 19th century computer was good compared to this junk product. I'm not sure, how HP delivered this product? they didnt do any quality check? instead of correct spareparts, hp delived this model with scrap items? I was an HP employee and never had this kind of worst experience with HP product. If HP deliver this kind of product, then HP share value will be zero soon. please wake up... call back this product immediately.\n pleas dont buy junk product even dont want rate singl star choic gave 1 starstart boot everyth bad boot nearli 3040 min click app take time come back sometim come back cant believ i3 4 gb ram worst product ever seeneven 19th centuri comput good compar junk product im sure hp deliv product didnt qualiti check instead correct sparepart hp deliv model scrap item hp employe never kind worst experi hp product hp deliv kind product hp share valu zero soon pleas wake call back product immediately\n Negative 145 junk product single star other choice bad mins app own time i3 gb ram worst product 19th century computer good junk product sure hp product quality correct spareparts hp model scrap items hp employee kind worst experience hp product hp kind product hp share value product
53 I am totally disappointed with this product. I thought HP will done the job but it's do slow. Not only that, it often hanging. Is it HP or any local product? How a branded product can be so?\n total disappoint product thought hp done job slow often hang hp local product brand product so\n Negative 38 disappointed product hp job hp local product product
54 Very bad product no one can purchase waste of money very slow performance like 1 gb mobile phone so hang Battery back up 1 hour if u want to waste your money so purchase otherwise don't purchase any item from this seller customer care said there is no return policy product not returned\n bad product one purchas wast money slow perform like 1 gb mobil phone hang batteri back 1 hour u want wast money purchas otherwis dont purchas item seller custom care said return polici product returned\n Positive 53 bad product one waste money slow performance gb mobile phone battery hour money item seller customer care return policy product
55 It's a decent product in this price range, it could have been lighter though. With windows 10 preloaded it's definitely value for money. One of the buttons was getting stuck, but amazon after sending a technician and verifying has immediately replaced it with a new laptop.\n decent product price rang could lighter though window 10 preload definit valu money one button get stuck amazon send technician verifi immedi replac new laptop\n Negative 47 decent product price range lighter windows value money buttons amazon technician verifying new laptop
56 Please don't buy this, extremely slow.. My 8 years old laptop works better than this..\n pleas dont buy extrem slow 8 year old laptop work better this\n Positive 15 slow years old laptop better
57 Purchased this product today along with MS Office . But while activating ms office it seeks product key. Pls help me. Where can I get the MS Office key. In package no document regarding ms office.After using 6 months now the mouse is lagging in Windows 10, tried with all obtion but unable to rectify it. Therefor,now using Bluetooth mouse and it's ok. Other than this issue system is superb and working greatly.\n purchas product today along ms offic activ ms offic seek product key pl help get ms offic key packag document regard ms officeaft use 6 month mous lag window 10 tri obtion unabl rectifi therefornow use bluetooth mous ok issu system superb work greatly\n Positive 75 product today ms office ms office product key ms office key package document ms office.after months mouse windows obtion unable bluetooth mouse ok other issue system superb
58 Don't hesitate to buy this product if you are a student because it is the best entry level laptop which serve every important functions for every student so please don't hesitate buy itIt also has a pre installed MS officeWindows 10Value for money\n dont hesit buy product student best entri level laptop serv everi import function everi student pleas dont hesit buy itit also pre instal ms officewindow 10valu money\n Positive 43 product student best entry level laptop important functions student buy itit pre ms officewindows money
59 As per specifications of laptop, I have to receive lifetime warranty of ms office, but I have got warranty of 1 week and even I have raised a query which is still not replied.\n per specif laptop receiv lifetim warranti ms offic got warranti 1 week even rais queri still replied\n Neutral 34 specifications laptop lifetime warranty ms office warranty week query
60 Good laptop for my home use. MS Office was pre-loaded and set up was smooth. A bit slower at starting than my expectation for Core i3 7th Gen, but otherwise good value at this pricepoint.\n good laptop home use ms offic preload set smooth bit slower start expect core i3 7th gen otherwis good valu pricepoint\n Positive 35 good laptop home use ms office pre loaded smooth bit slower expectation core i3 7th gen good value pricepoint
61 Very bad experience worst laptop hanging problem from the first day even on personal use I m not using this laptop for playing games and all still this hang on doing very simple task . I thing this is not even have i3 processor becz I3 perform very well . Seller are doing fraud on the laptop i3 sticker but inside tha laptop is just garbage fill.Worst performance worst laptop don't buy this go for Dell laptop these are good then Hp.\n bad experi worst laptop hang problem first day even person use use laptop play game still hang simpl task thing even i3 processor becz i3 perform well seller fraud laptop i3 sticker insid tha laptop garbag fillworst perform worst laptop dont buy go dell laptop good hp\n Negative 82 bad experience worst laptop problem first day personal use laptop games simple task thing i3 processor becz i3 seller fraud laptop i3 sticker tha laptop garbage fill.worst performance worst laptop go dell laptop good
62 Ekdam ghatiya h..act like old laptop.. performance is too slow\n ekdam ghatiya hact like old laptop perform slow\n Positive 10 ekdam ghatiya h act old laptop performance slow
63 Laptop is very slow!! It takes lot of time to start! Battery backup is also bad.. No warranty card provided along with laptop.. poor display.. Msoffice is valid only for 1 month\n laptop slow take lot time start batteri backup also bad warranti card provid along laptop poor display msoffic valid 1 month\n Negative 32 laptop slow lot time battery backup bad warranty card laptop poor display msoffice valid month
64 System come with windows 10 and office suite, but the booting speed is very slow , if you are planning to upgrade system to SSD we can get a better performance wich is 5 * Faster.\n system come window 10 offic suit boot speed slow plan upgrad system ssd get better perform wich 5 faster\n Positive 36 system windows office suite booting speed slow system better performance wich
65 Only screen border is black rest of all parts in silver...u cant work in dark area coz there is no light in keybords keys\n screen border black rest part silveru cant work dark area coz light keybord keys\n Neutral 24 screen border black rest parts silver u dark area coz light keybords keys
66 In this range I guess this is a good laptop. There was a single drive no partition so that one can change. Installing everything in C drive slows down your lappy.Secondly, I had an issue with a black screen error every time I log in into that. But after that it was successfully replaced. Thanks team.You can buy this at this budget\n rang guess good laptop singl drive partit one chang instal everyth c drive slow lappysecondli issu black screen error everi time log success replac thank teamyou buy budget\n Positive 62 range good laptop single drive partition c drive lappy.secondly issue black screen error time thanks budget
67 I bought laptop : HP 15-da0327tu 2018 15.6-inch almost 6 months back. I am totally struck-up with this laptop:1) takes almost 10 minutes to boot up fully.2) Always showing that disk usage is 100% , thought i have only 10% of data in c-drive.3) Google chrome & edge browsers always hangs.Now I am planning to contact HP customer to resolve this , i hope.CORE i3 is not good with windows 10. Always better to go for i5 and above if OS is windows 10.\n bought laptop hp 15da0327tu 2018 156inch almost 6 month back total struckup laptop1 take almost 10 minut boot fully2 alway show disk usag 100 thought 10 data cdrive3 googl chrome edg browser alway hangsnow plan contact hp custom resolv hopecor i3 good window 10 alway better go i5 os window 10\n Positive 85 laptop hp months laptop:1 minutes disk usage % % data c drive.3 google chrome edge browsers hp customer i3 good windows better i5 os windows
68 best quality\n best quality\n Positive 2 best quality
69 For windows 10 to operate smoothly you must have at least 8Gb RAM.The laptop is extremely SLOW and LAGGY.Buying this I ended up in regret.\n window 10 oper smoothli must least 8gb ramth laptop extrem slow laggybuy end regret\n Negative 25 windows least gb laptop slow regret
70 Extremely slow machine. I only use it for ms word and the laptop is extremely slow.On boot the disk utilization is always 86 to 100%. Processor utilization stays above 47% regardless of me leaving it idle.It is not upto the mark and the performance is not consistent with the specifications advertised.\n extrem slow machin use ms word laptop extrem slowon boot disk util alway 86 100 processor util stay 47 regardless leav idleit upto mark perform consist specif advertised\n Negative 51 slow machine ms word laptop slow.on boot disk utilization % processor utilization % mark performance consistent specifications
71 There is no provision for 0.000000001 star. If it was available I would have given it. The laptop runs very slow. Just like 2G network takes time to open link.\n provis 0000000001 star avail would given laptop run slow like 2g network take time open link\n Positive 30 provision star available laptop slow g network time link
72 Laptop is good. Reasonable price for the config. Battery seems to drain little faster as compared to the description given. There was some lagging issues after startup but after few changes in setting its running fine. The Keyboard is very soft and easy to use and the num. pad makes it more handy while typing numbers. It could have been better if the keys were of different colour.Overall its good.\n laptop good reason price config batteri seem drain littl faster compar descript given lag issu startup chang set run fine keyboard soft easi use num pad make handi type number could better key differ colouroveral good\n Positive 70 laptop good reasonable price config battery little description lagging issues startup few changes fine keyboard soft easy num pad handy numbers better keys different colour.overall good
73 Bought this laptop.. since day one this laptop is not working properly have lodged a complaint before given period but after many attempts, I'm unable to contact Amazon customer service.\n bought laptop sinc day one laptop work properli lodg complaint given period mani attempt im unabl contact amazon custom service\n Negative 30 laptop day laptop complaint period many attempts unable amazon customer service
74 Battery is good bt sound quality is quite average or u can say below average , processor is also averageTotally disappointed with the product ..\n batteri good bt sound qualiti quit averag u say averag processor also averagetot disappoint product \n Positive 25 battery good bt sound quality average average processor disappointed product
75 It was too bad experience for me from amazon, like I got used product.Literally packing of laptop was too bad, I can say there was no packing at all.And another surprise was when I unboxed laptop there was already profile created with name “jitu Pawar” that too password protected.You must be seen profile in my above click.Not expected from Amzon.\n bad experi amazon like got use productliter pack laptop bad say pack alland anoth surpris unbox laptop alreadi profil creat name “jitu pawar” password protectedy must seen profil clicknot expect amzon\n Negative 60 bad experience amazon packing laptop bad packing surprise laptop name jitu pawar password profile above amzon
76 Best product at this price range.1. Weight is decent2. Gaming performance is not very high.3. I personally like this product because of Battery life. One times of full charge gives me 10 to 12 hours of backup.4. I am using this for last 12 or 13 days, but i have no hanging issues also.Overall if you don't buy the laptop only to play games then i can say this is the best product at this price.\n best product price range1 weight decent2 game perform high3 person like product batteri life one time full charg give 10 12 hour backup4 use last 12 13 day hang issu alsooveral dont buy laptop play game say best product price\n Positive 76 best product price range.1 weight decent2 gaming performance high.3 product battery life times full charge hours backup.4 last days hanging issues also.overall laptop games best product price
77 Inspite of having 4GB RAM, it system gets changed. No point of this laptop. It takes minutes to start and to open basic application like Ms excel, ms word and browser like Chrome, there is a time lag it doesn't function smoothly.. Sad I wasted my 30k for this trash...\n inspit 4gb ram system get chang point laptop take minut start open basic applic like ms excel ms word browser like chrome time lag doesnt function smoothli sad wast 30k trash\n Positive 51 inspite gb ram system point laptop minutes basic application ms excel ms word browser chrome time lag sad 30k trash
78 Excellent\n excellent\n Positive 1 excellent
79 Very slow\n slow\n Neutral 2 slow
80 Sir/madamAs per the requirements...i don't have Ms office. I don't have the bag which was already attached by the factory. So I need a immediate call from you. Otherwise I will return the laptop. Screen quality is not good.\n sirmadama per requirementsi dont ms offic dont bag alreadi attach factori need immedi call otherwis return laptop screen qualiti good\n Positive 39 sir madamas requirements ms office bag factory immediate call laptop screen quality good
81 Good\n good\n Positive 1 good
82 Dear Sir / Madam,I have purchased HP laptop, its touch-pad isn't working well. Need to return back the same. Please co-ordinate asap.\n dear sir madami purchas hp laptop touchpad isnt work well need return back pleas coordin asap\n Positive 22 dear sir madam hp laptop touch pad same asap
83 Worst Laptop in the world...Issues:1: Dead Slow2: Frequently hang3: Battery Backup not up to the mark.4: Trouble in downloading anything5: Need Admin access for everything..Overall, Waste of pure hard earned money into the product which is not worth half of it... Go for different..\n worst laptop worldissues1 dead slow2 frequent hang3 batteri backup mark4 troubl download anything5 need admin access everythingoveral wast pure hard earn money product worth half go different\n Negative 44 worst laptop world issues:1 dead slow2 hang3 battery backup mark.4 trouble admin access waste pure money product worth half different
84 Battery life not much good, problem is the silver white body colour, easily catch scratches and be dirty easily,,, one should go for black colour body laptop ,,\n batteri life much good problem silver white bodi colour easili catch scratch dirti easili one go black colour bodi laptop \n Positive 29 battery life good problem silver white body colour scratches dirty black colour body laptop
85 The worst Product i have ever bought from Amazon and has hadn't seen such a worst laptop in my life .I had bought this product for my mother three months ago. From the beginning onwards this product had been getting hanged frequently and at this point of time i am unable to atleast switch On this product. More over, it has to be noted that even though the product had on site warranty the HP service team was reluctant to do onsite service. Please read and decide before purchasing this product.HP must re-engineer this and must replace me with another.\n worst product ever bought amazon hadnt seen worst laptop life bought product mother three month ago begin onward product get hang frequent point time unabl atleast switch product note even though product site warranti hp servic team reluct onsit servic pleas read decid purchas producthp must reengin must replac another\n Negative 100 worst product amazon worst laptop life product mother months beginning product point time unable atleast product product site warranty hp service team reluctant onsite service product.hp -
86 The laptop has primitive configuration and will be outdated soon. I wonder why this laptop is still in market by HP.The good things - It starts quickly and the time taken for sleep and wake up is very less.The bad things - It is excruciatingly slow if you have 4 or more tabs opened of a browser - especially with google chrome. There is likely chance of Laptop freezing for more tabsThe worse - The network adapter doesn't support 5 GHZ band and the 4 GB RAM is just inadequate.\n laptop primit configur outdat soon wonder laptop still market hpthe good thing start quickli time taken sleep wake lessth bad thing excruciatingli slow 4 tab open browser especi googl chrome like chanc laptop freez tabsth wors network adapt doesnt support 5 ghz band 4 gb ram inadequate\n Negative 90 laptop primitive configuration laptop market good things time sleep bad things slow more tabs browser google chrome likely chance laptop freezing more worse network adapter ghz band gb ram inadequate
87 Very cheap compared to showrooms outside.Received the brand new lappy with good packaging. Comes with pre-installed Ms Office. I3 7th generation processor. But still there are some lags while performaning normal tasks. Taking a lot of time for booting. Not recommend for gaming.\n cheap compar showroom outsidereceiv brand new lappi good packag come preinstal ms offic i3 7th gener processor still lag performan normal task take lot time boot recommend gaming\n Positive 43 cheap showrooms brand new lappy good packaging pre ms office i3 7th generation processor lags normal tasks lot time booting gaming
88 The worst ever product of hp till now..It broke My trust in hp as I.m using hp products since so many years.. So pls inform hp or their dealers to atleast sought it As this laptop is in warranty period..\n worst ever product hp till nowit broke trust hp im use hp product sinc mani year pl inform hp dealer atleast sought laptop warranti period\n Negative 40 worst ever product hp trust hp i.m hp products many years hp dealers atleast laptop warranty period
89 Product is not good “even bad” as it’s getting hang on regular basis\n product good “even bad” it’ get hang regular basis\n Positive 13 product good bad hang regular basis
90 Laptop has very Poor finishing. Gaps are seen towards the right side as the keyboard panel is away from the cd disc. Scratches are also seen.\n laptop poor finish gap seen toward right side keyboard panel away cd disc scratch also seen\n Negative 27 laptop poor finishing gaps right side keyboard panel cd disc scratches
91 Worst performance ever in this price range. Extremely slow and very less sound\n worst perform ever price rang extrem slow less sound\n Negative 13 worst performance price range slow sound
92 Very bad experience of the product. After using 1-2 months, suddenly one spot had appeared in the screen and gradually it was increasing. Went to service center, they are telling screen damage not fall under warranty. My suggestion is don't buy laptop and other expensive products from Amazon.\n bad experi product use 12 month suddenli one spot appear screen gradual increas went servic center tell screen damag fall warranti suggest dont buy laptop expens product amazon\n Negative 48 bad experience product months spot screen service center screen damage warranty suggestion laptop other expensive products amazon
93 Speed of machine is slowest , not good for basic school work also , wonder why hp has bundled such bad product , that might be reason for low price .... will not advise anyone to buy even if price reduced by 50%\n speed machin slowest good basic school work also wonder hp bundl bad product might reason low price advis anyon buy even price reduc 50\n Negative 43 speed machine slowest good basic school work hp such bad product reason low price price %
94 Useless productVery slow processingIt's better to buy product from a showroom, rather than from Amazon\n useless productveri slow processingit better buy product showroom rather amazon\n Positive 15 useless productvery slow processingit better product showroom amazon
95 Something quite disappointed in performance. A quilty of buying online because of its slow system. It is very slow than other systems. Seems some defective like.\n someth quit disappoint perform quilti buy onlin slow system slow system seem defect like\n Negative 26 disappointed performance quilty slow system slow other systems defective
96 Laptop works slow as compare to Dell which is purchased by my friend.\n laptop work slow compar dell purchas friend\n Positive 13 laptop slow dell friend
97 The laptop is great. I3 is all you need if your usage is only for everyday surfing, movies and MS officeNot meant for gamingCame with life time valid OS 10 and MS office\n laptop great i3 need usag everyday surf movi ms officenot meant gamingcam life time valid os 10 ms office\n Positive 33 laptop great i3 usage everyday surfing movies ms officenot gamingcame life time valid os ms office
98 At first there was some confusionLaptop is not booting when power is switched onI opt for return but not thereContacted HP support no answerAt last amazon came to helpThey told to charge for3hrsThen it is okHp people pl listen other wise bad impressionsAt least give some hints\n first confusionlaptop boot power switch oni opt return therecontact hp support answerat last amazon came helpthey told charg for3hrsthen okhp peopl pl listen wise bad impressionsat least give hints\n Positive 47 confusionlaptop power oni opt return hp answerat last amazon for3hrsthen people other wise bad impressionsat least hints
99 over hole laptop colour is good but keypad silver colour not good very light and 4 gm ram not good hang problem so i assemble a extra 4 gb ram then performance will be good so pls dont buy 4 gm ram laptop 8 gb ram laptop buy and bilvery of this product very very bad amazon divery agent not pick the call 30 time calling but no rply and amzon not return a amount not replace so choice your frnd\n hole laptop colour good keypad silver colour good light 4 gm ram good hang problem assembl extra 4 gb ram perform good pl dont buy 4 gm ram laptop 8 gb ram laptop buy bilveri product bad amazon diveri agent pick call 30 time call rpli amzon return amount replac choic frnd\n Positive 83 hole laptop colour good keypad silver colour good light gm ram good hang problem extra gb ram performance good gm ram laptop gb ram laptop buy bilvery product bad amazon divery agent call time rply amount choice frnd
100 How to avail warranty as my laptop is not working...when I took laptop to HP service center then they are asking for laptop serial no on invoice but it is missing. Kindly help me out.\n avail warranti laptop workingwhen took laptop hp servic center ask laptop serial invoic miss kindli help out\n Positive 35 warranty laptop laptop hp service center laptop serial invoice
101 Processor is too slow and also often hang.....And also one keypad key is damaged.... don't buy this laptop...\n processor slow also often hangand also one keypad key damag dont buy laptop\n Neutral 18 processor slow keypad key laptop
102 Nice...\n nice\n Positive 1 nice
103 Absolutely patheticAmazon does not give any support in any case.,.nor even contact details for HPMy laptop become useless in less than 10 more thosePathetic\n absolut patheticamazon give support casenor even contact detail hpmi laptop becom useless less 10 thosepathetic\n Neutral 24 patheticamazon support case details hpmy laptop useless less thosepathetic
104 extremely slow, takes more than 5 minutes to boot up and 2 minutes to switch between windows\n extrem slow take 5 minut boot 2 minut switch windows\n Neutral 17 slow more minutes minutes windows
105 Processing speed is too slow, don't even opens basic apps smoothly like office or web browsers. No benefits of buying Genuine windows\n process speed slow dont even open basic app smoothli like offic web browser benefit buy genuin windows\n Positive 22 processing speed slow basic apps office web browsers benefits genuine windows
106 This device has gone faulty within a month. Device has stopped booting\n devic gone faulti within month devic stop booting\n Negative 12 device faulty month device
107 Defective product send my sellers\n defect product send sellers\n Negative 7 defective product sellers
108 It keeps on hanging every time one of the worst laptop ever bought compared to Dell i3 2 nd gen 4 GB ram 320 GB harddisk. I fell my old laptop was far better than this laptop\n keep hang everi time one worst laptop ever bought compar dell i3 2 nd gen 4 gb ram 320 gb harddisk fell old laptop far better laptop\n Negative 37 time worst laptop dell i3 nd gen gb ram gb harddisk old laptop better laptop
109 It's worst laptop ...I never seen such useless device in my life ...He is too slower even nursery boy'll be faster than this device\n worst laptop never seen useless devic life slower even nurseri boyll faster device\n Negative 25 worst laptop such useless device life slower nursery faster device
110 This is the worse products i ever bought.I totally dnt like its feature moreover it hangs all the time.i ask them to return bt they instead ask me to update it. I dnt want to keep the product.. and i want to return it as soon as possible\n wors product ever boughti total dnt like featur moreov hang timei ask return bt instead ask updat dnt want keep product want return soon possible\n Positive 48 worse products dnt feature product possible
111 If your budget is around 30 to 32k, this is a very good bye. For general purpose, this is an excellent product. For many this is slightly slow. During first time booting it took a lot of time because of a great no of updates. But after finishing the updates its performance is great.\n budget around 30 32k good bye gener purpos excel product mani slightli slow first time boot took lot time great updat finish updat perform great\n Positive 54 budget 32k good general purpose excellent product many slow first time lot time great no updates updates performance great
112 Worst laptop ever.Service of amazon is good but product is not good as like offline store.Don't buy this product from Amazon bcz the smallr not send HP's genuine laptop.Heating issue in the right side of touchpad and it is too slow rather than other i3 products.\n worst laptop everservic amazon good product good like offlin storedont buy product amazon bcz smallr send hp genuin laptoph issu right side touchpad slow rather i3 products\n Positive 46 worst laptop ever.service amazon good product good offline product amazon bcz smallr hp genuine laptop.heating issue right side touchpad slow other i3 products
113 Its been over a month using this laptop. I am happy with its performance in every way. Perfectly as everything is described.\n month use laptop happi perform everi way perfectli everyth described\n Neutral 22 month laptop happy performance way
114 Pros: Very Good Look Wise.Display Nice As compared to Other Laptops In this Price Range.Cons: Its Hangs If you Browsing with Multi TAB's .Not Reliable for Gaming. Even It hangs with office software, like word, excel.Note: Go with 8GB RAM model it works well.\n pro good look wisedisplay nice compar laptop price rangecon hang brows multi tab reliabl game even hang offic softwar like word excelnot go 8gb ram model work well\n Positive 44 pros good wise.display nice other laptops price range.cons hangs multi tab reliable gaming office software word gb ram model
115 No one can like this because this laptop may be unexpected for you so be aware and stay away for this laptop\n one like laptop may unexpect awar stay away laptop\n Positive 22 one laptop unexpected aware laptop
116 Super but ms office not instal\n super ms offic instal\n Positive 6 super ms office
117 Product is good but i haven't receive any warranty card and this is big fault from Amazon side and this is not acceptable. It's look like Amazon doing fraud with their customer's. I have tried so many times to customer services but the number isn't connecting....\n product good havent receiv warranti card big fault amazon side accept look like amazon fraud custom tri mani time custom servic number isnt connecting\n Positive 46 product good warranty card big fault amazon side acceptable amazon fraud customer many times customer services number
118 This product is good but its delhivered without warenty card and without windows 10....So everyone when you to buy plz check all information to this product and DEAR AMAZON plz check this issue and solved for your belivable customers..... Thank you.\n product good delhiv without warenti card without window 10so everyon buy plz check inform product dear amazon plz check issu solv beliv custom thank you\n Positive 43 product good warenty card windows plz information product dear amazon issue belivable customers
119 Such a good looking laptop, with full HD screen and good sound quality\n good look laptop full hd screen good sound quality\n Positive 13 good looking laptop full hd screen good sound quality
120 Worthless. No properly support from Amazon.\n worthless properli support amazon\n Positive 6 worthless amazon
121 NYC superb in this budjet ....dizz product ,,,,,it consuming more data\n nyc superb budjet dizz product consum data\n Positive 11 nyc superb budjet dizz product more data
122 To be genuine I'm happy with the product 4gb ram is ok but I'll add 8 gb to get more robust experience. Overall good laptop.\n genuin im happi product 4gb ram ok ill add 8 gb get robust experi overal good laptop\n Positive 25 genuine happy product gb ram ok gb robust experience overall good laptop
123 This lappi is very slow it takes too much time to open chrome or any other app u want to use. I bought 3 products from Amazon but none of them made me feel happy to buy those products. I have decided that I will not buy anything from Amazon in future\n lappi slow take much time open chrome app u want use bought 3 product amazon none made feel happi buy product decid buy anyth amazon future\n Positive 52 lappi slow much time chrome other app products amazon none happy products amazon future
124 Ok Good Laptop For Every Day Tasks. Average Laptop At This Price 30490.There's no information available for which type of SSD Should be Installed.\n ok good laptop everi day task averag laptop price 30490there inform avail type ssd installed\n Positive 24 good laptop day tasks average laptop price 30490.there information available type ssd
125 As compared price it's not worth it . Battery is draining fast ☹️\n compar price worth batteri drain fast ☹️\n Negative 13 price worth battery
126 This is too slow working on stuffing, ms office.Taking to many times while it is starting\n slow work stuf ms officetak mani time starting\n Neutral 16 slow stuffing many times
127 Amazing product. But you need to add extra 4gb ram to make the best use of it. Without an additional ram the laptop gets too slow while multitasking. Extra 4gb ran costed me about 2000 from nehru place of kingston.\n amaz product need add extra 4gb ram make best use without addit ram laptop get slow multitask extra 4gb ran cost 2000 nehru place kingston\n Positive 40 amazing product extra gb ram best use additional ram laptop slow extra gb nehru place kingston
128 I bought this laptop but when I am opening the MS office it says to buy MS office why is this so when we have purchased life time windows 10\n bought laptop open ms offic say buy ms offic purchas life time window 10\n Neutral 35 laptop ms office ms office life time windows
129 All HP product are not good working.Also HP support and services poor .. Please don't buying HP product Dell items better than HP items\n hp product good workingalso hp support servic poor pleas dont buy hp product dell item better hp items\n Positive 25 hp product good support services poor hp product dell items better hp items
130 Response time is slow and battery draining fast.\n respons time slow batteri drain fast\n Neutral 8 response time slow battery
131 The product had some quality issues. It was very fragile. Waste of money. The service is so poor. Never buy this product\n product qualiti issu fragil wast money servic poor never buy product\n Negative 22 product quality issues fragile waste money service poor product
132 Not working properly it takes 5 minutes to start n off don't buy dis\n work properli take 5 minut start n dont buy dis\n Neutral 14 minutes dis
133 Worth every penny\n worth everi penny\n Positive 3 worth penny
134 Not recommended to buy the laptop as the laptop is extremely slow, and HP Support does not have a good solution to the problem\n recommend buy laptop laptop extrem slow hp support good solut problem\n Positive 24 laptop laptop slow hp support good solution problem
135 Battery, sound , build quality is good, but i3 processor is slow unless you are very rarely use laptop and that to for simple usesage you can take it otherwise go for i5.\n batteri sound build qualiti good i3 processor slow unless rare use laptop simpl usesag take otherwis go i5\n Positive 33 battery sound build quality good i3 processor slow laptop simple usesage i5
136 System very slow\n system slow\n Neutral 3 system slow
137 All good;Battery backup (4-5), Fast Charging, Nice sleek looking, games & application works very well.\n goodbatteri backup 45 fast charg nice sleek look game applic work well\n Positive 15 good;battery backup fast charging nice sleek looking games application
138 Worst Product. Don't buy this.. can't work on multiple windows. Hangs a lot very very very slow after each and ever click you should wait wait wait to respond. It's a fancy peice looks attractive but not worth it..\n worst product dont buy cant work multipl window hang lot slow ever click wait wait wait respond fanci peic look attract worth it\n Negative 40 worst product multiple windows lot slow fancy peice attractive worth
139 I bought it this for 28,500 value for the money\n bought 28500 valu money\n Neutral 10 value money
140 Not good product.\n good product\n Positive 3 good product
141 It's very very slow. I can't work on it.\n slow cant work it\n Neutral 10 slow
142 New laptop is taking longer time to respond any app..Performance very bad, don't buy this.\n new laptop take longer time respond appperform bad dont buy this\n Negative 16 new laptop longer time app performance
143 Laptop durability and battery life is good. But its bit on slower side. It takes around 3:25 mins for login windows\n laptop durabl batteri life good bit slower side take around 325 min login windows\n Positive 21 laptop durability battery life good bit slower side mins login windows
144 After one and half months, battery is not charging why ? Today it is showing 79% of battery why ?. When unplug the AC adaptor it is directly swith off why ? Please let me know the answer to solve the problem.\n one half month batteri charg today show 79 batteri unplug ac adaptor directli swith pleas let know answer solv problem\n Negative 42 half months battery today % battery ac adaptor swith answer problem
145 The material of body making is very bad,like a glass breaking type not a solid material.Very very bad making material\n materi bodi make badlik glass break type solid materialveri bad make material\n Negative 20 material body making bad glass breaking type solid material.very bad material
146 Only looking good otw very unsatisfactory product. Speed is very slow .Don't go with this .\n look good otw unsatisfactori product speed slow dont go \n Positive 16 good otw unsatisfactory product speed slow
147 very slow laptop .....\n slow laptop \n Neutral 4 slow laptop
148 We are using from last one month. Got small defect, right side panel is not fully attached with screen. Laptop is very slow. From day we were observing. There is no much use hence haven't checked regularly\n use last one month got small defect right side panel fulli attach screen laptop slow day observ much use henc havent check regularly\n Negative 37 last month small defect right side panel screen laptop slow day much use
149 Slowest laptop in the world dnt like it not value for money...don't buy it...\n slowest laptop world dnt like valu moneydont buy it\n Positive 14 slowest laptop world dnt value money don't
150 I have not used much.. but it's looking good... I have a complain that it cost me extra RS. 500/- I booked on 28th as prime customer.. On 29th it was RS. 500/- less.. it cost me more due to prime customer\n use much look good complain cost extra rs 500 book 28th prime custom 29th rs 500 less cost due prime customer\n Positive 42 good complain extra rs 28th prime customer 29th rs less due prime customer
151 Useless\n useless\n Negative 1 useless
152 The system is very slow and it gets hang easily. The Ram is low . People should not choose products like laptop from Amazon. They should physically verify the product from the stores.\n system slow get hang easili ram low peopl choos product like laptop amazon physic verifi product stores\n Positive 33 system slow ram low people products laptop amazon product stores
153 No problem in operation\n problem operation\n Negative 4 problem operation
154 Veryyy very slow\n veryyi slow\n Neutral 3 veryyy
155 its good, but hangs a bit, may be due to internet speed issues. MS Office is paid version and not free as claimed by amazon. Batter is inbuilt and cannot be dismounted. sound quality is not that good.\n good hang bit may due internet speed issu ms offic paid version free claim amazon batter inbuilt cannot dismount sound qualiti good\n Positive 38 good bit due internet speed issues ms office version free amazon batter inbuilt sound quality good
156 Keypad are too bad\n keypad bad\n Negative 4 keypad bad
157 Dumbest decision I’ve ever made, slowest laptop I have seen, even clean format doesn’t work please don’t waste your money\n dumbest decis i’v ever made slowest laptop seen even clean format doesn’t work pleas don’t wast money\n Negative 20 dumbest decision ve slowest laptop clean format doesn t work t money
158 Worst lapi I have ever seen. Too slow\n worst lapi ever seen slow\n Negative 8 worst lapi slow
159 Very slow, takes lot of time to start and then hangs. i bought it for my kid as a middle range laptop but it is useless and user experience is frustrating. waste of money\n slow take lot time start hang bought kid middl rang laptop useless user experi frustrat wast money\n Negative 34 slow lot time kid middle range laptop useless user experience frustrating waste money
160 Pros. Light weight. Slim design..good battery life... Fast charging. . ... Extra features..Cons. . Take hell lots of time start. And booting system kind of slow.\n pro light weight slim designgood batteri life fast charg extra featurescon take hell lot time start boot system kind slow\n Negative 28 pros light weight slim design good battery life charging extra features cons hell lots time start booting system slow
161 I bougt this product in last month and found that one led of screen is not working. I misplaced the bill hence i could not replace the product\n bougt product last month found one led screen work misplac bill henc could replac product\n Neutral 28 product last month one screen bill product
162 It is extremely slow. Am thinking about Ram upgrade.\n extrem slow think ram upgrade\n Neutral 9 slow ram upgrade
163 Very slow. It is not better for regular use. Performance less than 1gb ram\n slow better regular use perform less 1gb ram\n Positive 14 slow better regular use performance less gb ram
164 Great product quality as always HP provides.\n great product qualiti alway hp provides\n Positive 7 great product quality hp
165 I recently purchased this item and feel happy about its performance and build quality.\n recent purchas item feel happi perform build quality\n Neutral 14 item happy performance quality
166 Graphics is not suitable for gaming.to slow to start.After one I have faced black screen problem.also suddenly shut down.warranty not shown in hp website.\n graphic suitabl gamingto slow startaft one face black screen problemalso suddenli shut downwarranti shown hp website\n Neutral 24 graphics suitable slow start.after black screen problem.also down.warranty hp website
167 Overall the laptop is very disappointing.. battery backup is good.. display quality is good.. but working slowly.... you have to install ssd and upgrade ram for smooth work\n overal laptop disappoint batteri backup good display qualiti good work slowli instal ssd upgrad ram smooth work\n Positive 28 laptop disappointing battery backup good display quality good ssd ram smooth work
168 when I buy this product then I faced hanging issue and now its keypad does not working I raised the complain but no one resolve my issue..... very very very very very bad product and service of hp\n buy product face hang issu keypad work rais complain one resolv issu bad product servic hp\n Negative 38 product issue keypad complain one issue bad product service hp
169 Worst product third grade quality which made by China ,don't buy in online , not worth for money\n worst product third grade qualiti made china dont buy onlin worth money\n Negative 19 worst product third grade quality china online worth money
170 Good for school and office\n good school office\n Positive 5 good school office
171 I am writing review after using it. Battery life is 3-4 hours, picture quality is average , processing speed is also average.\n write review use batteri life 34 hour pictur qualiti averag process speed also average\n Neutral 22 review battery life hours picture quality average processing speed average
172 Product was to slow worst product from HP company Don't buy laptop from HP company and amazon\n product slow worst product hp compani dont buy laptop hp compani amazon\n Negative 17 product worst product hp company laptop hp company amazon
173 Run like P1 system...most of the time hang hang hand and update window everytime.\n run like p1 systemmost time hang hang hand updat window everytime\n Positive 14 p1 system most time hang hang hand window everytime
174 Waste for the money it's not working full hanging problem taking so much of time please see the vedio\n wast money work full hang problem take much time pleas see vedio\n Negative 19 waste money full problem much time vedio
175 Nice laptop very smooth keyboard, good for gaming, and windows 10 given, only touch screen not given in this laptop apart from this over all performance is excellent.\n nice laptop smooth keyboard good game window 10 given touch screen given laptop apart perform excellent\n Positive 28 nice laptop smooth keyboard good gaming windows touch screen laptop performance excellent
176 Its not worth do not purchase this product because it is very slow to work\n worth purchas product slow work\n Positive 16 worth product slow work
177 Verry slow, screen quality bery wrist, this product look like 1year old. I am verry disappointed for hp quality,\n verri slow screen qualiti beri wrist product look like 1year old verri disappoint hp quality\n Negative 19 verry slow screen quality bery wrist product old verry disappointed hp quality
178 Working very good .. ms office not included.\n work good ms offic included\n Positive 8 good ms office
179 The performance of the laptop is very poor, it’s taking more time for opening apps and files, always getting hang. It is not at all useful to me.\n perform laptop poor it’ take time open app file alway get hang use me\n Negative 28 performance laptop poor more time apps files hang useful
180 Worst product\n worst product\n Negative 2 worst product
181 Got this HP laptop for my friend and it really works well. Nice product from HP as usual and genuine service from AMAZON. Thank you amazon\n got hp laptop friend realli work well nice product hp usual genuin servic amazon thank amazon\n Positive 26 hp laptop friend nice product hp usual genuine service amazon amazon
182 Anti glare - yesFor Gaming- goodPortability- 9 pints out of 10In this budget, best option to purchase.\n anti glare yesfor game goodport 9 pint 10in budget best option purchase\n Positive 17 anti glare yesfor goodportability- pints budget best option
183 Very slowly starting..... It will be take 15 mins.....\n slowli start take 15 mins\n Neutral 9 mins
184 Battery backup is very good , speed is little slow but nice\n batteri backup good speed littl slow nice\n Positive 13 battery backup good speed little slow nice
185 Ok\n ok\n Positive 1
186 Worst of money i suggest to all don't buy it because this laptop keyboard is not good for typing and also not visible words mentioned on keys due to silver colour keys and board.\n worst money suggest dont buy laptop keyboard good type also visibl word mention key due silver colour key board\n Negative 34 worst money laptop keyboard good typing visible words keys due silver colour keys board
187 This is the worst laptop in the market.very slow such that you can not even do basic things browsing and all.\n worst laptop marketveri slow even basic thing brows all\n Negative 21 worst laptop market.very slow such basic things
188 Some bug in Windows 10. The laptop doesn't sleep or hibernate. Battery keeps discharging...\n bug window 10 laptop doesnt sleep hibern batteri keep discharging\n Neutral 14 bug windows laptop hibernate battery
189 Slover speed as expected, Never buy costly electronic item like laptop and etc.\n slover speed expect never buy costli electron item like laptop etc\n Positive 13 slover speed costly electronic item laptop
190 After purchased only I got to know that it came with out MS office . Very worst experience as ur regular customer.\n purchas got know came ms offic worst experi ur regular customer\n Negative 22 ms office worst experience ur regular customer
191 Too slow processing\n slow processing\n Neutral 3 slow processing
192 It's very slow laptop I bought it bcoz of i3 proc...but my pc with pentium core is more faster than this...I could be due to some settings or something other but the fact is\n slow laptop bought bcoz i3 procbut pc pentium core faster thisi could due set someth fact is\n Neutral 34 slow laptop bcoz i3 proc pc pentium core faster due settings other fact
193 Goodproduct\n goodproduct\n Neutral 1 goodproduct
194 The product is bad\n product bad\n Negative 4 product bad
195 Battery is not removeable where it was written removable and the system is good but slow in working overall it's good\n batteri remov written remov system good slow work overal good\n Positive 21 battery removeable removable system good slow good
196 Get good condition system, some times little slow, other wise goodone product. One of demerit is No any drivers and software CD in the box. Received only charger and laptop in the box\n get good condit system time littl slow wise goodon product one demerit driver softwar cd box receiv charger laptop box\n Positive 43 good condition system times little slow other wise goodone product demerit drivers software cd box charger laptop box
197 Very bad product for hp very slow process and very bad customer service\n bad product hp slow process bad custom service\n Negative 13 bad product hp slow process bad customer service
198 Windows 10 works very slow with 4gb configuration. Better to have 8 gb. Build wise it is ok fr 30k range laptop. Or go fr 4gb without os and get win7\n window 10 work slow 4gb configur better 8 gb build wise ok fr 30k rang laptop go fr 4gb without os get win7\n Positive 31 windows works slow gb configuration better gb wise ok fr 30k range laptop gb os
199 I'm truly satisfied with the performance of the laptop and the battery backup especially considering the cost I paid for this.Also, GET 10% CASHBACK + 6 Month Extended Warranty In this Laptop by Ordering through vqr .in/1Hope this helps! If helped then Please Press the Helpful Button.Happy Purchasing\n im truli satisfi perform laptop batteri backup especi consid cost paid thisalso get 10 cashback 6 month extend warranti laptop order vqr in1hop help help pleas press help buttonhappi purchasing\n Positive 48 satisfied performance laptop battery backup cost this.also % cashback month warranty laptop vqr helpful button.happy purchasing
200 After 4 Months of Usage writing this review...1.Got it for 19k2.Awesome battery life3.Worth the price\n 4 month usag write review1got 19k2awesom batteri life3worth price\n Neutral 15 months usage review battery price
201 This is not a good product and the the dealer is not authorized according to the HP service centerDear Mr/Ms kumar,STATUS: REQUEST IS CLOSEDDO NOT REPLY to this email. It is sent from an unmonitored automatic service. See below for contact information.Please note that if materials are being posted to you, this notification confirms that these materials have been ordered.HP Reference Number: 5014623862Product Description: HP 245 G5 Notebook PCProduct Number: Y0T72PASerial Number: 5CG7113GDSProblem Description:Portal Case URL: N/A\n good product dealer author accord hp servic centerdear mrm kumarstatu request closeddo repli email sent unmonitor automat servic see contact informationpleas note materi post notif confirm materi orderedhp refer number 5014623862product descript hp 245 g5 notebook pcproduct number y0t72paseri number 5cg7113gdsproblem descriptionport case url na\n Positive 79 good product dealer hp service centerdear mr ms kumar status request closeddo email unmonitored automatic service contact information.please note materials notification materials reference number description hp g5 notebook pcproduct number y0t72paserial number description portal case url n
202 Wonderful product for such a price. I got it for an effective price of nearly 17,000 ₹ and I'm delighted to have it.Pros -- Good battery life. Lasts for around 4 hours.- Lightweight.- Doesn't lag.- Price is great.- Trusted brand.- Durable and excellent for daily use.Cons -- Not suitable for high end gaming.- It is DOS, hence you've to install Windows by yourself.\n wonder product price got effect price nearli 17000 ₹ im delight itpro good batteri life last around 4 hour lightweight doesnt lag price great trust brand durabl excel daili usecon suitabl high end game do henc youv instal window yourself\n Positive 63 wonderful product price effective price delighted it.pros good battery life lightweight.- price durable excellent daily use.cons suitable high end gaming.- dos windows
203 damage laptop received.. very disappointment.\n damag laptop receiv disappointment\n Negative 5 damage laptop disappointment
204 I bought it for my personal use & i'm surprised how it performs. It's super lightweight though battery backup isn't good, might last for 2 hours after a full charge. Switching between tasks is super smooth & no lags even when lots of windows are opened. This is where AMD quad core processor shows its jalwa. I installed windows 10 & it's working awesome. At this price point its supercool product. I got it next day because i'm a prime subscriber. Others might get it late. Go for it, its a jackpot.Note: do check if its covered by hp warranty because in past many people have faced the issue with hp products bought from Amazon. Hp guys say they wont provide warranty for any product bought from Amazon.\n bought person use im surpris perform super lightweight though batteri backup isnt good might last 2 hour full charg switch task super smooth lag even lot window open amd quad core processor show jalwa instal window 10 work awesom price point supercool product got next day im prime subscrib other might get late go jackpotnot check cover hp warranti past mani peopl face issu hp product bought amazon hp guy say wont provid warranti product bought amazon\n Positive 128 personal use surprised lightweight battery backup good hours full charge tasks smooth lags lots windows amd quad core processor jalwa windows awesome price point supercool product next day prime subscriber others jackpot.note hp warranty past many people issue hp products amazon hp guys warranty product amazon
205 its not working properly i need to return the laptop urgently , there are lines on the display of laptop, it did work 10 days only. after that we are facing a lot of problems with it, can you please my product or take return, i am requesting you to take return or get repaired . how can we get warranty of laptop from HP company ,where we go to get repaired.\n work properli need return laptop urgent line display laptop work 10 day face lot problem pleas product take return request take return get repair get warranti laptop hp compani go get repaired\n Negative 73 laptop lines display laptop work days lot problems product return return warranty laptop hp company
206 Lightweight. HP laptop in less than 20K is worth a deal.The only gripe: I bought in offer period, and noticed that the price changed after offer period to a lower one. Not fair Amazon !The warranty was already found to be updated to the month i bought (Sep) of 2018.Was easy to install softwares.\n lightweight hp laptop less 20k worth dealth gripe bought offer period notic price chang offer period lower one fair amazon warranti alreadi found updat month bought sep 2018wa easi instal softwares\n Positive 54 lightweight hp less worth deal.the only gripe offer period price offer period lower one fair amazon warranty month sep easy softwares
207 Everything is fine, working good except Bluetooth. Tried all of the drivers from HP downloads. The seller shipped faster. Tried Drivers of Realtek, HP, Broadcom & intel.\n everyth fine work good except bluetooth tri driver hp download seller ship faster tri driver realtek hp broadcom intel\n Positive 27 fine bluetooth drivers hp downloads seller drivers realtek hp broadcom intel
208 Right hand side vertical line on the screen\n right hand side vertic line screen\n Positive 8 right hand side vertical line screen
209 Amazon delivered a product which was manufactured 2 years ago. I received October 2016 product on 16 October 2018. VGA, USB and HDMI ports are already rusted.Moreover, as per their policies, I will have to coordinate with technician to inspect the product so that complaint can be raised. Product photos aren't sufficient.As per HP website, the warranty was started in June 2018.Will update on basis of response I receive from Amazon.\n amazon deliv product manufactur 2 year ago receiv octob 2016 product 16 octob 2018 vga usb hdmi port alreadi rustedmoreov per polici coordin technician inspect product complaint rais product photo arent sufficienta per hp websit warranti start june 2018will updat basi respons receiv amazon\n Positive 71 amazon product years october product october vga usb hdmi ports rusted.moreover policies technician product complaint product photos hp website warranty june update basis response amazon
210 demaretsthis product is not for those who dont know to how to install window and driversit is an humble request to amazon to atleast provide network driverand even the product detailed mentioned on the laptop and actual details of the product is differenti also dont recieve any product detailed voucher in the boxusb port of one side is not working , kindly tell me which driver should i install for thatmeritsbettery life is fair easily last for 4 hoursfunctioning are smoothoverall good after installing the window\n demaretsthi product dont know instal window driversit humbl request amazon atleast provid network driverand even product detail mention laptop actual detail product differenti also dont reciev product detail voucher boxusb port one side work kindli tell driver instal thatmeritsbetteri life fair easili last 4 hoursfunct smoothoveral good instal window\n Positive 86 demaretsthis product window driversit humble request amazon atleast provide network driverand product laptop actual details product differenti product voucher boxusb port side driver thatmeritsbettery life fair last hoursfunctioning smoothoverall good window
211 Daily work is fine and super M.s office very smoothly run abd other games non of these i really love this mini laptop you got a 18k price range i recommend this laptop best and hp brand Like - this performance is equal to core i3 Amd a6 proffeser is very very good - i think amd a6 equal to core i3 so i suggested go for order it\n daili work fine super ms offic smoothli run abd game non realli love mini laptop got 18k price rang recommend laptop best hp brand like perform equal core i3 amd a6 proffes good think amd a6 equal core i3 suggest go order it\n Positive 69 daily work fine super m.s office abd other games non mini laptop 18k price range laptop hp brand performance equal i3 amd a6 proffeser good amd a6 equal i3 order
212 After Use Of 1 Year As Developer Good For Basic Programming But Not For Framework.Build Quality Is Awesome.Mostly Use Linux Os(Ubuntu, Linix Mint) . This Os Work Faster Better And Smoother As Compared To Windows 10\n use 1 year develop good basic program frameworkbuild qualiti awesomemostli use linux osubuntu linix mint os work faster better smoother compar window 10\n Positive 36 use year developer good basic programming framework.build quality use linux os(ubuntu linix mint os work better smoother windows
213 Again bitter experience from amazon. CD/DVD Writer is not working properly. Noise from hard disk\n bitter experi amazon cddvd writer work properli nois hard disk\n Negative 15 bitter experience amazon cd dvd writer noise hard disk
214 Lap not turning on any solution?\n lap turn solution\n Positive 6 solution
215 I am really very happy with this product.But, the Sound from the device is not audible.Packing - betterThis is my first purchase with Amazon Thank you so much!!!Best product best price\n realli happi productbut sound devic audiblepack betterthi first purchas amazon thank muchbest product best price\n Positive 31 happy product.but sound device first purchase amazon product best price
216 Good laptop atleast right now I don't have any issues, great budget laptop.\n good laptop atleast right dont issu great budget laptop\n Negative 13 good laptop atleast issues great budget laptop
217 This laptop with AMD processor is low budget home use laptop come with DODPreinstalled os you have to install win 10 64bit os and download the necessary drivers from HP web site.It's moderate laptop for using net surfing other office work. Display is moderate and low end hamming can run in this laptop.\n laptop amd processor low budget home use laptop come dodpreinstal os instal win 10 64bit os download necessari driver hp web siteit moder laptop use net surf offic work display moder low end ham run laptop\n Positive 54 laptop amd processor low budget home use laptop os win 64bit os necessary drivers hp web site.it moderate laptop net surfing other office work display moderate low end hamming laptop
218 This is a very good budget laptop. I bought this for my dad. Hardware spec are just right for daily basic usage, office apps, movies etc. Screen is good quality. Viewing angle is better than most lappys in this budget.Thing to remember. This doesn't come with OS. Also it lacks bluetooth. But you can go for a ₹200 bluetooth USB adapter and work with it.\n good budget laptop bought dad hardwar spec right daili basic usag offic app movi etc screen good qualiti view angl better lappi budgetth rememb doesnt come os also lack bluetooth go ₹200 bluetooth usb adapt work it\n Positive 65 good budget laptop dad hardware spec right daily basic usage office apps movies screen good quality angle better most lappys budget.thing os bluetooth bluetooth usb adapter
219 Build quality is good. Battery exhaust fast . AMD processor is a bit slow. Once you buy you can't return cab be replaced on , so check it before buying. Overall not so Happy\n build qualiti good batteri exhaust fast amd processor bit slow buy cant return cab replac check buy overal happy\n Positive 36 quality good battery exhaust amd processor bit slow cab happy
220 Not even 06 months completed. It's battery became non functional. Laptop doesn't work without electricity ON. Tried to claim under warranty but HP denied for the claim. Worst experience ever.This may be due to design of battery. (Protrusion of battery from the even surface)Laptop's overall functioning is good.\n even 06 month complet batteri becam non function laptop doesnt work without electr tri claim warranti hp deni claim worst experi everthi may due design batteri protrus batteri even surfacelaptop overal function good\n Negative 48 months battery non functional laptop electricity warranty hp claim worst experience ever.this due design battery protrusion battery even surface)laptop overall functioning good
221 Its a good buy for small business. Have bought 2 of them till now and have been using it over a week. The touchpad is excessively smooth which might be difficult for few to use. No lags..Works like any other intel processor. Go for it..\n good buy small busi bought 2 till use week touchpad excess smooth might difficult use lagswork like intel processor go it\n Positive 45 good buy small business week touchpad smooth difficult few lags other intel processor
222 Well at 19k i cannot expect an alienware..serves what its meant for..very average mousepad..and ordinary battery..display is great but sometimes windows trips..better get an original window..\n well 19k cannot expect alienwareserv meant forveri averag mousepadand ordinari batterydisplay great sometim window tripsbett get origin window\n Positive 26 19k alienware average mousepad ordinary battery display great trips better original window
223 This laptop doesn't work and when it switch on it can't work anymore\n laptop doesnt work switch cant work anymore\n Neutral 13 laptop
224 Just what I needed at the Price which doesn't hurt the pocket! Secondly, HP reliability for assurance\n need price doesnt hurt pocket secondli hp reliabl assurance\n Positive 17 price pocket hp reliability assurance
225 I have just used laptop for one day after receiving.Laptop came with Battery and adapter in double sealed box.Only DOS installed .Drivers and other apps needs to be downloaded.Nice look.No laptop bag supplied.overall good.\n use laptop one day receivinglaptop came batteri adapt doubl seal boxonli do instal driver app need downloadednic lookno laptop bag suppliedoveral good\n Positive 34 laptop day receiving.laptop battery adapter double box.only dos .drivers other apps downloaded.nice laptop bag supplied.overall good
226 Cant handle multiple applications\n cant handl multipl applications\n Neutral 4 multiple applications
227 The product is good. But when it comes to warranty the seller is always on the back seat. I got warranty only for 10 months. Many times i contacted this seller but no response ftom him.\n product good come warranti seller alway back seat got warranti 10 month mani time contact seller respons ftom him\n Positive 36 product good warranty seller back seat warranty months many times seller response
228 It's a good product... now I m using it for almost 4 months now.Nice product and awesome working speed\n good product use almost 4 month nownic product awesom work speed\n Positive 19 good product m months product awesome speed
229 The screen has developed some lines and have contacted Amazon several time. HP has denied any support on this. I am feeling extremely cheated on this. This is inspite of a senior leadership team calling me back and giving several assurances that it will get sorted in 4-5 days.\n screen develop line contact amazon sever time hp deni support feel extrem cheat inspit senior leadership team call back give sever assur get sort 45 days\n Positive 49 screen lines amazon several time hp support cheated inspite senior leadership team several assurances days
230 Everything is good ...but u have to pay extra for installing windows and antivirus for outside ...\n everyth good u pay extra instal window antiviru outsid \n Positive 17 good extra installing windows antivirus
231 Super laptop, Value for money\n super laptop valu money\n Positive 5 laptop value money
232 Nice productAndNice priceThanks Amazon\n nice productandnic pricethank amazon\n Positive 4 nice productandnice pricethanks amazon
233 The laptop is good for this price. But RAM information is not correct. I am going to try and upgrade it.\n laptop good price ram inform correct go tri upgrad it\n Positive 21 laptop good price information correct
234 Fast work.Awesome battery backupAnd the most interesting thing is- its fast charging.\n fast workawesom batteri backupand interest thing fast charging\n Positive 12 fast work.awesome battery backupand interesting thing fast charging
235 It's recommended as per it price range. Works Fine and couldn't expect more in this price range\n recommend per price rang work fine couldnt expect price range\n Positive 17 price range more price range
236 i've been using this laptop for 2 years.....i'm jus using it for my basic purpose only like for studies, watching movies etc.. for that it performs well until today...good product at cheaper price\n ive use laptop 2 yearsim ju use basic purpos like studi watch movi etc perform well todaygood product cheaper price\n Positive 33 laptop years i'm jus basic purpose studies movies today good product cheaper price
237 Ok but screen quality not perfect and screen bar line's came but prasents one scratches lines displays\n ok screen qualiti perfect screen bar line came prasent one scratch line displays\n Positive 17 screen quality perfect screen bar line lines displays
238 Fast, lightweight, easy to use, appropriate RAM, screen, storage space. Very suitable for students, working professionals looking for a lightweight performance laptop\n fast lightweight easi use appropri ram screen storag space suitabl student work profession look lightweight perform laptop\n Neutral 22 lightweight easy appropriate ram screen storage space suitable students professionals lightweight performance laptop
239 I have received a chapati stone instead of laptop. My goodness I opened in front of courier person. Plz don't believe much on online product which cost more than RS. 5000/-. Delivery also not satisfied.\n receiv chapati stone instead laptop good open front courier person plz dont believ much onlin product cost rs 5000 deliveri also satisfied\n Positive 35 chapati stone laptop goodness front courier person much online product more rs delivery satisfied
240 Amazing products have been using for last few months for every day(long hours)....it's a wonderful all in one product within this budget....\n amaz product use last month everi daylong hoursit wonder one product within budget\n Neutral 22 amazing products last few months day(long hours) wonderful product budget
241 prompt delivery original product working very well all the promised is delivered thanks\n prompt deliveri origin product work well promis deliv thanks\n Positive 13 prompt delivery original product thanks
242 IAM happy with this product .....matched with my requirement\n iam happi product match requirement\n Neutral 9 iam happy product requirement
243 amazon is not contact me my laptop hap touch is not working fake fake fake amazon is fake\n amazon contact laptop hap touch work fake fake fake amazon fake\n Negative 18 amazon laptop hap touch fake fake fake amazon fake
244 The usb sockets were not good, they are shapeless\n usb socket good shapeless\n Positive 9 usb sockets good shapeless
245 Very nice one at this price.look awesome. But display seems to be little weak. But thats not a big issue.\n nice one pricelook awesom display seem littl weak that big issue\n Neutral 20 nice one price.look awesome display weak big issue
246 GOOD LAPTOP, Basic daily needs complete smoothly.. worth it\n good laptop basic daili need complet smoothli worth it\n Positive 9 good laptop basic daily needs worth
247 Was good but battery is some what no fine\n good batteri fine\n Positive 9 good battery
248 This is a good product in affordable price.\n good product afford price\n Positive 8 good product affordable price
249 Best laptop in this price range!\n best laptop price range\n Positive 6 best laptop price range
250 Gud\n gud\n Neutral 1 gud
251 This is very basic version. Needs MS OP to be installed separately. Bettter to go for other versions as it's not cost effective.\n basic version need ms op instal separ bettter go version cost effective\n Positive 24 basic version ms op bettter other versions effective
252 lags a lot ... very poor screen quality and graphics are low ... don't invest your money here ... just a waste product\n lag lot poor screen qualiti graphic low dont invest money wast product\n Negative 23 lot poor screen quality graphics low money waste product
253 Horrible product. No one should go for it. It's been just less than 3 days of use and it doesn't work continuously for more than 15min\n horribl product one go less 3 day use doesnt work continu 15min\n Neutral 26 horrible product one less days use more 15min
254 Able to do Angular 8 setup can coding smoothly .\n abl angular 8 setup code smoothli \n Neutral 10 able angular setup
255 Good laptop in 18k\n good laptop 18k\n Positive 4 good laptop 18k
256 A bit bulky...but still best in this range from HP\n bit bulkybut still best rang hp\n Positive 10 bit bulky range hp
257 There is no dvd writer in my laptop purchased last week\n dvd writer laptop purchas last week\n Neutral 11 dvd writer laptop last week
258 Thank you amazon. I am very much satisfied with the product so far. I got the genuine product in very lower price only because of Amazon.\n thank amazon much satisfi product far got genuin product lower price amazon\n Positive 27 amazon satisfied product genuine product lower price amazon
259 Best laptop in this price range\n best laptop price range\n Positive 6 best laptop price range
260 Overall a good product and satisfactory performance except the sound which is too low.\n overal good product satisfactori perform except sound low\n Positive 14 good product satisfactory performance sound low
261 Lap top is ok but I expecting more advanced version hence I am returning this product pls collect the product from ramanagar.\n lap top ok expect advanc version henc return product pl collect product ramanagar\n Positive 22 lap top ok advanced version product product ramanagar
262 We need help to install OS\n need help instal os\n Positive 6 help os
263 ITS GOOD BUT BATTERY LIFE IS TOO POOR..PERFORMANCE AVERAGE ,THE BODY QUALITY IS NOT GOD\n good batteri life poorperform averag bodi qualiti god\n Positive 16 good battery life poor performance average body quality god
264 Wrong product found the product I found don't have optical disk drive but they're showing in pic having optical drive\n wrong product found product found dont optic disk drive theyr show pic optic drive\n Negative 20 wrong product product optical disk drive pic optical drive
265 Value for money. Nice laptop\n valu money nice laptop\n Positive 5 value money nice laptop
266 I'm fully satisfied with this product, looks is amazing💕😍\n im fulli satisfi product look amazing💕😍\n Neutral 10 satisfied product amazing
267 Its very nice n l liked it a lot n agood choice for working woman because easy to carry... Also\n nice n l like lot n agood choic work woman easi carri also\n Positive 20 nice n l lot agood choice woman easy
268 Very nice laptop at this price for home or non IT professional usage.Arrived on time, overall good product\n nice laptop price home non profession usagearriv time overal good product\n Positive 18 nice laptop price home non professional usage.arrived time overall good product
269 this laptop is very nice to use and its very fast.\n laptop nice use fast\n Positive 11 laptop nice
270 Good product is less price\n good product less price\n Positive 5 good product less price
271 Great\n great\n Positive 1 great
272 Its fantastic lap battery life also good it’s good working condition\n fantast lap batteri life also good it’ good work condition\n Positive 11 fantastic lap battery life good good working condition
273 Its been wit me almost 3yrs. No complaints. Worth the money\n wit almost 3yr complaint worth money\n Negative 11 wit complaints worth money
274 Very good\n good\n Positive 2 good
275 Absolutely Brilliant. It serves my purpose.\n absolut brilliant serv purpose\n Positive 6 brilliant purpose
276 Awesome product for 20k price tag. Supports all kinds of OS.Download all the necessary drivers from hp official website.Battery backup 4.5hrsbuilt quality 4/5performance 4.5/5display 3.7/5webcam 4/5overall 4.2/5\n awesom product 20k price tag support kind osdownload necessari driver hp offici websitebatteri backup 45hrsbuilt qualiti 45perform 455display 375webcam 45overal 425\n Positive 27 awesome product 20k price tag kinds os.download necessary drivers hp official website.battery backup quality
277 Bad product\n bad product\n Negative 2 bad product
278 I've received a defected product with the wrong warrenty period.\n ive receiv defect product wrong warrenti period\n Negative 10 defected product wrong warrenty period
279 Per specification and product is nice!!! no complaints\n per specif product nice complaints\n Neutral 8 specification product nice complaints
280 Third quality laptop or windows bhi alag se upgrade karana padta hai\n third qualiti laptop window bhi alag se upgrad karana padta hai\n Neutral 12 third quality laptop windows bhi alag se upgrade karana padta hai
281 Good and nice product\n good nice product\n Positive 4 good nice product
282 BATTERY COMES OUT , LOCK FUXNTION OF THE BATTERY IS NOT WORKING\n batteri come lock fuxntion batteri working\n Neutral 12 battery fuxntion battery
283 Its really worth for 19k thanks to amazon.\n realli worth 19k thank amazon\n Positive 8 worth 19k thanks amazon
284 Value for money !\n valu money \n Neutral 4 value money
285 According to price it is good\n accord price good\n Positive 6 price good
286 im satisfied with this product.good so far.\n im satisfi productgood far\n Neutral 7 satisfied product.good
287 Working fine\n work fine\n Positive 2
288 I have used this laptop but service is not good .\n use laptop servic good \n Positive 11 laptop service good
289 Very.goood\n verygoood\n Neutral 1 very.goood
290 Product better but battery performance not good.\n product better batteri perform good\n Positive 7 product better battery performance good
291 AWESOME\n awesome\n Positive 1 awesome
292 good product accroding to price.\n good product accrod price\n Positive 5 good product price
293 Best\n best\n Positive 1 best
294 Not good as expected. 2 usb port not working.\n good expect 2 usb port working\n Positive 9 good usb port
295 It's a good product from HP\n good product hp\n Positive 6 good product hp
296 Like\n like\n Positive 1
297 This is very good product.\n good product\n Positive 5 good product
298 Over all it is a good product in this range\n good product range\n Positive 10 good product range
299 Worth for the cost. It is serving the purpose well. Its a good product.\n worth cost serv purpos well good product\n Positive 14 worth cost purpose good product
300 package was damage\n packag damage\n Negative 3 package damage
301 Wonderful product\n wonder product\n Neutral 2 wonderful product
302 Build Quality\n build quality\n Neutral 2 quality
303 Good product\n good product\n Positive 2 good product
304 nice\n nice\n Positive 1 nice
305 I am not satisfied product\n satisfi product\n Neutral 5 satisfied product
306 Sasta and sundar\n sasta sundar\n Neutral 3 sasta sundar
307 very bad\n bad\n Negative 2 bad
308 It was a defective product.\n defect product\n Negative 5 defective product
309 Ok for normal work\n ok normal work\n Positive 4 normal work
310 Bad\n bad\n Negative 1 bad
311 Dont purchase bad product\n dont purchas bad product\n Positive 4 bad product
312 Working fine as of now\n work fine now\n Positive 5
313 very bad laptop\n bad laptop\n Negative 3 bad laptop
314 Good buy for basic function\n good buy basic function\n Positive 5 good buy basic function
315 whatever it promises gets delivered.\n whatev promis get delivered\n Neutral 5
316 Worth for Price\n worth price\n Positive 3 worth price
317 Good laptop,\n good laptop\n Positive 2 good laptop
318 Nice\n nice\n Positive 1 nice
319 Battery bacup is not gud\n batteri bacup gud\n Neutral 5 battery bacup gud
320 good screen quality\n good screen quality\n Positive 3 good screen quality
321 best laptop\n best laptop\n Positive 2 best laptop
322 Everything Is Like\n everyth like\n Positive 3
323 Y laptop sahi nhi h\n laptop sahi nhi h\n Neutral 5 laptop sahi nhi h
324 Value for money unique in category\n valu money uniqu category\n Neutral 7 value money unique category
325 Very good product\n good product\n Positive 3 good product
326 Nice laptop....light weight...supports virtualization...best buy within budget..\n nice laptoplight weightsupport virtualizationbest buy within budget\n Positive 7 nice laptop light weight virtualization best budget
327 Poor product.\n poor product\n Negative 2 poor product
328 GOOD PRODUCT\n good product\n Positive 2 good product
329 Very nice\n nice\n Positive 2 nice
330 GOOD CONFIGURATION,SPEED IS ALSO GOOD,\n good configurationspe also good\n Positive 5 good configuration speed good
331 not good\n good\n Positive 2 good
332 Not bad\n bad\n Negative 2 bad
333 Great Product , value for money.\n great product valu money\n Positive 6 great product value money
334 Bakwas\n bakwas\n Neutral 1 bakwas
335 We didn't received any bill of laptop no warranty card anything\n didnt receiv bill laptop warranti card anything\n Neutral 11 bill laptop warranty card
336 Very nice 👍\n nice 👍\n Positive 3 nice
337 Running cool battry drainage issue\n run cool battri drainag issue\n Positive 5 cool battry drainage issue
338 good product with this price segment\n good product price segment\n Positive 6 good product price segment
339 This product is worth money... Better choice for middle class... Performance is good...\n product worth money better choic middl class perform good\n Positive 13 product worth money better choice middle class performance good
340 Excellent product\n excel product\n Positive 2 excellent product
341 Window we're not activated.\n window activated\n Neutral 4 window
342 It is so much better than expected\n much better expected\n Positive 7 better
343 good laptop\n good laptop\n Positive 2 good laptop
344 Thenks\n thenks\n Neutral 1 thenks
345 Great product ✌️✌️\n great product ✌️✌️\n Positive 3 great product
346 value for money :)its really awesome :)\n valu money realli awesom \n Neutral 7 value money awesome
347 Very nice...the processor is fast...worth buying\n niceth processor fastworth buying\n Neutral 6 nice processor fast worth buying
348 V'Good\n vgood\n Neutral 1
349 good one .light and compact\n good one light compact\n Positive 5 good compact
350 excellent product\n excel product\n Positive 2 excellent product
351 good product\n good product\n Positive 2 good product
352 Very good products\n good products\n Positive 3 good products
353 excellent\n excellent\n Positive 1 excellent
354 Excellent Product worth of money.\n excel product worth money\n Positive 5 excellent product worth money
355 Great laptop at this price.\n great laptop price\n Positive 5 great laptop price
356 You just need to buy/install the Windows 10 and it works perfectly. Not recommended for any person who does not know how to install new OS.- A6-7310 is better than 3rd/3th gen i3 processors- Build quality is good at this price range.- No back-light for keywords, so be aware of the same.- It has Optical drive, VGA Port, HDMI, 3X USB, SD Card reader, Bluetooth, Camera- 3.5 mm headphone jack is awesome, as you can simply plug your mobile headphone and even mic will work.\n need buyinstal window 10 work perfectli recommend person know instal new os a67310 better 3rd3th gen i3 processor build qualiti good price rang backlight keyword awar optic drive vga port hdmi 3x usb sd card reader bluetooth camera 35 mm headphon jack awesom simpli plug mobil headphon even mic work\n Positive 85 windows person new os.- a6 better gen i3 processors- quality good price range.- back light keywords aware same.- optical drive vga port hdmi usb card reader bluetooth mm headphone jack awesome mobile headphone mic
357 Good product for 19k.. no issues with the processor or hardware.. I ve been using it since 3 months.. good for students. But the problem is that driver software for usb 2.0 ports unavailable in hp software site.. i had to download lenovo drivers to make it work.. no any other issues..\n good product 19k issu processor hardwar use sinc 3 month good student problem driver softwar usb 20 port unavail hp softwar site download lenovo driver make work issues\n Positive 52 good product 19k issues processor hardware months good students problem driver software usb ports unavailable hp software site lenovo drivers other issues
358 Wifi connection is not activated even after several times drivers installation. My all efforts are gone in drain and still not it is not working. Online HP help center still.unable to fix this issue. Waiting for the service man to visit personally and fix it.\n wifi connect activ even sever time driver instal effort gone drain still work onlin hp help center stillun fix issu wait servic man visit person fix it\n Positive 45 connection several times drivers installation efforts drain hp issue service man
359 Based on a week's experienceGood product for the price.Using Ubuntu 16.04Pros:1. Decent amount of RAM: Almost all regular progs runs smoothly. Some heavy files eats up memory though.2. Good graphics: Runs steam based Hitman (2016) game. Though it is expected with A6 APU.3. Decent build4. Good battery backup. Gives around 3 hrs backup when streaming videos with wired internet.5. No problem with cooling till now. Let's see how it holds up in summerCons:1. An hour more of battery backup would have been great2. 14 inch screen is a little small.For now my verdict is that it is a very decent laptop for the price.\n base week experiencegood product priceus ubuntu 1604pros1 decent amount ram almost regular prog run smoothli heavi file eat memori though2 good graphic run steam base hitman 2016 game though expect a6 apu3 decent build4 good batteri backup give around 3 hr backup stream video wire internet5 problem cool till let see hold summercons1 hour batteri backup would great2 14 inch screen littl smallfor verdict decent laptop price\n Positive 104 week experiencegood product price.using ubuntu decent amount ram regular progs heavy files memory good graphics runs steam hitman game a6 apu.3 decent build4 good battery backup hrs backup videos wired internet.5 problem summercons:1 hour more battery backup great2 inch screen little verdict decent laptop price
360 worst built quality i have been using this since last 3 months it is got a crack near the keyboard and also the battery locks are not working properly(one of them is not working et al)\n worst built qualiti use sinc last 3 month got crack near keyboard also batteri lock work properlyon work et al\n Negative 37 quality last months crack keyboard battery locks properly(one et al
361 Within two months the mother board got damaged. It was replaced under warranty but the next day cooling fan stopped working. Raised a case and waiting.Edit: Cooling fan was also replaced under warranty. So promoting the rating to two. But now the OS crashes (blue screen) very frequently (twice a day); not sure if it is a hardware or software issue.\n within two month mother board got damag replac warranti next day cool fan stop work rais case waitingedit cool fan also replac warranti promot rate two os crash blue screen frequent twice day sure hardwar softwar issue\n Positive 61 months mother board warranty next day fan case waiting.edit fan warranty rating os crashes blue screen day sure hardware software issue
362 Really awesome product,in this price range. I've been using this from last couple of days and I didn't face any lagging issue neither heating issue. I would recommend if your budget range is between 20k\n realli awesom productin price rang ive use last coupl day didnt face lag issu neither heat issu would recommend budget rang 20k\n Positive 35 awesome product price range last couple days lagging issue heating issue budget range 20k
363 I bought this from Amazon and using since last one month. Till the time no issue found with this machine. Anti glared screen is great and also smoothly works with all applications. I am using Windows 10. Bettary back up is also appreciated it's about 4 to 5 hours for continues use. Very light weight and slim. As per budget it fulfills all the requirements.\n bought amazon use sinc last one month till time issu found machin anti glare screen great also smoothli work applic use window 10 bettari back also appreci 4 5 hour continu use light weight slim per budget fulfil requirements\n Positive 66 amazon last month time issue machine anti glared screen great applications windows bettary hours continues use light weight slim budget requirements
364 Laptop is delivered within 3 days without prime, thanks seller.Product is very cheap and good performance. Touchpad is not responsive smoothly in windows 7. Overall excellent.For better performance replace HDD into SSD and upgrade RAM to 8gb or 12gb or 16gb.\n laptop deliv within 3 day without prime thank sellerproduct cheap good perform touchpad respons smoothli window 7 overal excellentfor better perform replac hdd ssd upgrad ram 8gb 12gb 16gb\n Positive 41 laptop days prime thanks seller.product cheap good performance touchpad responsive windows overall better performance hdd ssd upgrade ram gb gb gb
365 I buyed this laptop on Axis Bank Credit Card with 24 months EMI. But my first credit card bill with this product EMI includes the complete amount into the statement. Bank says the seller got delayed into converting the amount into EMI and the complete amount is generated in the credit card bill. Whoever has delayed but now I'm in a fuss.\n buy laptop axi bank credit card 24 month emi first credit card bill product emi includ complet amount statement bank say seller got delay convert amount emi complet amount gener credit card bill whoever delay im fuss\n Positive 62 laptop axis bank credit card months first credit card bill product emi complete amount statement bank seller amount emi complete amount credit card bill fuss
366 Its a very good product, good value for money. I have been using for 3 months. It doesnt have keyboard light, so using it in dark is a problem. Bt other than than everything is covered. Good for basic uses, even programs also can use. Not good enought for android development cause its amd cpu, arm based system image is very slow.\n good product good valu money use 3 month doesnt keyboard light use dark problem bt everyth cover good basic use even program also use good enought android develop caus amd cpu arm base system imag slow\n Positive 62 good product good value money months keyboard light dark problem other good basic uses programs good enought android development amd cpu arm system image slow
367 The product which has been sent to me has a defect that the left side 2 usb device connector is not working at all which is used for the connection of a pendrive, charger or like wise device. As the time of return has been passed even I can not replace it now. So what can be described more, it is looking very nice but it just extinguishes the fire of my enthusism.\n product sent defect left side 2 usb devic connector work use connect pendriv charger like wise devic time return pass even replac describ look nice extinguish fire enthusism\n Positive 75 product defect left side usb device connector connection pendrive charger wise device time return more nice fire enthusism
368 After researching a ton, I settled on this laptop. Don't let the price fool you. It is solid. I added an extra 4gb of ram to the laptop and now it flies. For those interested...it has 2 RAM/DIMM SLOTS but only 1 is used (4gb) the other is free to add an extra dimm to. also make sure you use DDR3L (low voltage) as im not sure the regular DDR3 voltage would be motherboard compatible...the stock dimm was a Hynix DDR3L 4gb (hynix is hyundai's electronic division). Boot up on win 10 x64 bit is 7 seconds max. The extra ram really makes the computer zip through processes. I've had no heat issues, and no glitches so far after a month of use. I love the weight/solid finish with a pseudo brushed metal type of artwork around the touchpad areas. It doesn't feel like cheap plastic. The AMD A6 is one of the best processors and has a great long life if you take care of them well. I have an older A6 dual core that is still running well after almost 6 years. Of course you have to clean your laptops vents from dust and keep it in a cool place and your AMD A6 will serve you well!. Don't waste your money on an overpriced INTEL I3 i5 etc generation processor...its a complete waste of money. Plus intel has had lawsuits in the past over faulty soldering of processors (just google it).... The only things I didn't like were that the keyboard is fused into the laptops' moulding which makes cleaning the keyboard harder (thankfully i bought a keyboard protector but still this should be designed better as a removable keyboard), the screen is ok and it is great that it is anti-glare (matte finish) by default but dont expect an IPS HD screen at this price point. This is more for presentations/students/moderate office work stuff...I haven't tried gaming on it but I wouldn't expect a high FPS on this laptop.Finding drivers for this pc is a bit of a pain...but it can be done....first install the HP Support assistant and follow along as it checks your pc drivers and warranty etc...or you can look for a similar HP laptop with a similar chipset....and use the drivers from its support page....like the HP 15g 221au drivers some of them work for this pc .....Oh forgot to mention as an audiophile you will love this laptop's sound quality (speakers are located on the bottom where you're wrists usually rest....but the DTS sound application along with the REALTEK sound driver (they make the best sound cards imo as a long time user).....will blow you away...don't expect solid thumping bass as its unrealistic to do that...but the sound clarity and volume loudness is very good compared to other laptops....put in a good set of over the ear headphones and play with the DTS settings....(which turn off the default generic windows equalizer) and you will be amazed at the sound clarity and bass produced via the DTS application.the webcam is really good and great to do basic skype or photo snaps with....This computers bios if I remember correctly also allows VT (virtualization technology) so those interested in virtual machines or other simulation software would be able to do it with this...The DVD drive is a slim dvd writer....with a small profile and quiet when spinning/readingIt has a Rj 45(lan port), vga port, hdmi port 1x usb 3.0 port, and 2x usb 2.0 ports Touchpad is responsive but not made by synaptics (Elan touchpad) which is a bit of a downer as synaptics makes the best touchpads....but this gets the job done still.....no issues with trackspeed or movement...Bluetooth is very good uses the realtek chipset and connects on the first shot...no issues there...realtek wifi chip is very good as well...can get signal from 3 floors down (in a concrete house with rebar and several walls btw) you just need to make sure you get a good wifi driver for the card to work really well as the default windows driver only gives like 1 bar whereas the realtek driver gives you 4-5 bars of signal strength.....plus settings you can manipulate via device manager/control panel....I recommend getting this laptop if you are on budget and also buying a keyboard protector (saco brand makes it)....sure this laptop is about 2 years old in terms of chipset (probably mid 2015 to 2016 in terms of the AMD A6 7333 but at the price point along with what comes with it in terms of ports and chipsets its well worth it! Go buy it!If this review was helpful please click the LIKE / HELPFUL button! Thanks! :)\n research ton settl laptop dont let price fool solid ad extra 4gb ram laptop fli interestedit 2 ramdimm slot 1 use 4gb free add extra dimm also make sure use ddr3l low voltag im sure regular ddr3 voltag would motherboard compatibleth stock dimm hynix ddr3l 4gb hynix hyundai electron divis boot win 10 x64 bit 7 second max extra ram realli make comput zip process ive heat issu glitch far month use love weightsolid finish pseudo brush metal type artwork around touchpad area doesnt feel like cheap plastic amd a6 one best processor great long life take care well older a6 dual core still run well almost 6 year cours clean laptop vent dust keep cool place amd a6 serv well dont wast money overpr intel i3 i5 etc gener processorit complet wast money plu intel lawsuit past faulti solder processor googl thing didnt like keyboard fuse laptop mould make clean keyboard harder thank bought keyboard protector still design better remov keyboard screen ok great antiglar matt finish default dont expect ip hd screen price point presentationsstudentsmoder offic work stuffi havent tri game wouldnt expect high fp laptopfind driver pc bit painbut donefirst instal hp support assist follow along check pc driver warranti etcor look similar hp laptop similar chipsetand use driver support pagelik hp 15g 221au driver work pc oh forgot mention audiophil love laptop sound qualiti speaker locat bottom your wrist usual restbut dt sound applic along realtek sound driver make best sound card imo long time userwil blow awaydont expect solid thump bass unrealist thatbut sound clariti volum loud good compar laptopsput good set ear headphon play dt settingswhich turn default gener window equal amaz sound clariti bass produc via dt applicationth webcam realli good great basic skype photo snap withthi comput bio rememb correctli also allow vt virtual technolog interest virtual machin simul softwar would abl thisth dvd drive slim dvd writerwith small profil quiet spinningreadingit rj 45lan port vga port hdmi port 1x usb 30 port 2x usb 20 port touchpad respons made synapt elan touchpad bit downer synapt make best touchpadsbut get job done stillno issu trackspe movementbluetooth good use realtek chipset connect first shotno issu thererealtek wifi chip good wellcan get signal 3 floor concret hous rebar sever wall btw need make sure get good wifi driver card work realli well default window driver give like 1 bar wherea realtek driver give 45 bar signal strengthplu set manipul via devic managercontrol pane recommend get laptop budget also buy keyboard protector saco brand make itsur laptop 2 year old term chipset probabl mid 2015 2016 term amd a6 7333 price point along come term port chipset well worth go buy itif review help pleas click like help button thank \n Positive 780 ton laptop price solid extra gb ram laptop interested ram dimm slots gb other free extra dimm sure low voltage sure regular ddr3 voltage motherboard compatible stock dimm hynix ddr3l gb hynix hyundai electronic division win x64 bit seconds max extra ram computer zip processes heat issues glitches month use weight solid finish pseudo metal type artwork touchpad areas cheap plastic amd a6 best processors great long life care older a6 dual core years laptops vents dust cool place amd a6 money intel i3 i5 generation processor complete waste money intel lawsuits past faulty soldering processors google only things keyboard laptops moulding keyboard keyboard protector removable keyboard screen ok great anti - glare matte finish default ips hd screen price point more presentations students moderate office work stuff gaming high fps drivers pc bit pain hp support assistant pc drivers warranty similar hp laptop similar chipset drivers support page hp g 221au drivers pc audiophile laptop sound quality speakers bottom wrists dts sound application realtek sound driver best sound cards long time don't solid bass unrealistic sound clarity volume loudness good other laptops good set ear headphones dts settings default generic windows equalizer amazed sound clarity bass dts webcam good great basic skype photo snaps computers vt virtualization technology interested virtual machines other simulation software able dvd drive slim dvd writer small profile quiet readingit rj port vga port hdmi port 1x usb port usb ports touchpad responsive synaptics elan touchpad bit downer synaptics best touchpads job issues trackspeed movement bluetooth good realtek chipset connects first shot issues realtek chip good signal floors concrete house rebar several walls sure good wifi driver card default windows driver bar realtek driver bars signal strength settings device manager control panel laptop budget keyboard protector saco brand it) laptop years old terms chipset mid terms amd a6 price point terms ports worth it!if review helpful like helpful button thanks
369 Great laptop for the prize. Will give it a five stars if it was delivered with Windows 10 installed\n great laptop prize give five star deliv window 10 installed\n Positive 19 great laptop prize stars windows
370 Took 3 days for delivery. Laptop is not the best and there is a noticeable lag here and there. But, in this price range, it is the best you can get. Battery life is superb and you can use it for most softwares.... Don't buy it if you use heavy coding softwares. Otherwise for normal company use, it is good.\n took 3 day deliveri laptop best notic lag price rang best get batteri life superb use softwar dont buy use heavi code softwar otherwis normal compani use good\n Positive 60 days delivery laptop best noticeable lag price range best battery life superb most softwares heavy coding softwares normal company use good
371 Very bad.never expected to have such a very bad display.far behind average display.regret this buy\n badnev expect bad displayfar behind averag displayregret buy\n Negative 15 bad.never bad display.far average display.regret buy
372 AMD A6 is better than i5 processor buy it without any doubtTested Games:NFS MW 2.0Far Cry 3Prototype 2Pes 2017Sniper elite 3Mass effect 3\n amd a6 better i5 processor buy without doubttest gamesnf mw 20far cri 3prototyp 2pe 2017sniper elit 3mass effect 3\n Positive 23 amd a6 better i5 processor doubttested games nfs mw elite effect
373 No problem in Win 10 64 bit installation. DisplayBrightness a little bit lowered after Catylist driver installation.Battery draining fast on web browsing. All HSE Comp.Sc/App tools functions smoothly. Installed MS office,Gimp,Geany,GCC compilar,Libre office,SQL,PHP,& ApacheRecently installed Ubuntu 16.04 LTS to make a dual boot system. Grub update on terminal brings the dual boot screen. Running flawlessly in Ubuntu too.Low brightness problem in win 10 is also resolved with AMD's display driver configuration\n problem win 10 64 bit instal displaybright littl bit lower catylist driver installationbatteri drain fast web brows hse compscapp tool function smoothli instal ms officegimpgeanygcc compilarlibr officesqlphp apacherec instal ubuntu 1604 lt make dual boot system grub updat termin bring dual boot screen run flawlessli ubuntu toolow bright problem win 10 also resolv amd display driver configuration\n Positive 72 problem win bit installation little bit lowered catylist driver installation.battery web browsing hse comp.sc/app tools functions ms office gimp geany gcc compilar libre office sql php ubuntu lts dual boot system grub update terminal dual boot screen ubuntu brightness problem win amd display driver configuration
374 Good OneIf you are not a gamer then its a best choice for you in this price range. Every thing works fine at moderate use. I must recommend to every body and the seller is also good.\n good oneif gamer best choic price rang everi thing work fine moder use must recommend everi bodi seller also good\n Positive 37 good oneif gamer best choice price range thing moderate use body seller good
375 Absolute value for money if you want a budget model. It has high speed hard disk and is listed as a business laptop in HP website. Performs well for the price.\n absolut valu money want budget model high speed hard disk list busi laptop hp websit perform well price\n Positive 31 absolute value money budget model high speed hard disk business laptop hp website price
376 Satisfied for the price paid\n satisfi price paid\n Neutral 5 satisfied price
377 Good productShould include some accessories like bagAnd include some cabel like HDMIBy the way good product\n good productshould includ accessori like bagand includ cabel like hdmibi way good product\n Positive 16 good productshould accessories bagand cabel way good product
378 The display of the laptop is not good after installing the driver the picture quality seems like the display is grainier and jazzy.\n display laptop good instal driver pictur qualiti seem like display grainier jazzy\n Positive 23 display laptop good driver picture quality display grainier jazzy
379 Excellent product within decent price bracket. Performance is excellent can be improved with higher ram. Good battery backup 4-5 hours*/depends upon individual usage.\n excel product within decent price bracket perform excel improv higher ram good batteri backup 45 hoursdepend upon individu usage\n Positive 23 excellent product decent price bracket performance excellent higher ram good battery backup hours*/depends individual usage
380 2 ports are not working...speed also not upto the mark\n 2 port workingspe also upto mark\n Neutral 10 ports speed mark
381 Nice laptop for home use .\n nice laptop home use \n Positive 6 nice laptop home use
382 So its been 3 days with this laptop an i have no complaints so far yet there are some stuffs that could have been better and done well. let compare each aspect of this laptop one by oneBUILDi bought this laptop to carry it when am in a vacation or outdoor most and in this part i have to say its a firm one and light weight but what i noticed is the whole this feels so plastic. there is enough place to rest you hand while typing but i really felt the need of keypad back light when i was doing my work in dark. the top has some really good texture with hp logo. though there are three USB port but none is 3.0. there are led lights for both webcam, on the right side of the the laptop coupled with HDD led notification and surprisingly LAN port light.on the right side there is our usual CD reader and writer. keypads are tactile and clicky. on the front side there is card reader and on the left there is 3.5mmjack and HDMI and at the back u can swipe back the battery from the down sidePERFORMANCEi bought this laptop for my daily coding and making presentation and stuffs. with AMD A6 and G4 Radeon i didn't so any lags our massive slow downs. though i strongly recommend that heavy software like ADOBE and games like GTA 5 should be left out.yet it is to be considered that since its AMD some compatibility issues with emulators is expected(updated) i have not yet installed any antivirus so far since defender seems to be pretty good. yet after installing adobe photoshop it started lagging. games like company of heroes tend to lag a littleSTANDBYbattery tend to lag 3 to 4 hours depending on the usage though i have an average opinion about the battery.it can be detached by sliding two locks at the back bottom of the laptop and pulling the pipe battery out.SCREENscreen seems to be bright enough with anti glare which seems to be good outside though sunlight shooting straight may create difficultyCAMERAit is equipped with a one mega pixel camera with a microphone which is quite a decent one. it is good when photo is taken in enough lighting but when it comes to low light it is prone to distortion. it is sufficient for video chatsSPEAKERspeaker are bedded at the bottom front of the laptop which i would rate 6 out of 10. they are audible finely when there are no noise but when you are outside with disturbance they are not audible at allVERDICTthis laptop is good for its compactness.if you are an average user and need to do productive works like working on excel sheets or make presentation this is a fine choice. the only say i have is about the plastiky finish and performance which when considered with money seems OK\n 3 day laptop complaint far yet stuff could better done well let compar aspect laptop one onebuildi bought laptop carri vacat outdoor part say firm one light weight notic whole feel plastic enough place rest hand type realli felt need keypad back light work dark top realli good textur hp logo though three usb port none 30 led light webcam right side laptop coupl hdd led notif surprisingli lan port lighton right side usual cd reader writer keypad tactil clicki front side card reader left 35mmjack hdmi back u swipe back batteri sideperformancei bought laptop daili code make present stuff amd a6 g4 radeon didnt lag massiv slow down though strongli recommend heavi softwar like adob game like gta 5 left outyet consid sinc amd compat issu emul expectedupd yet instal antiviru far sinc defend seem pretti good yet instal adob photoshop start lag game like compani hero tend lag littlestandbybatteri tend lag 3 4 hour depend usag though averag opinion batteryit detach slide two lock back bottom laptop pull pipe batteri outscreenscreen seem bright enough anti glare seem good outsid though sunlight shoot straight may creat difficultycamerait equip one mega pixel camera microphon quit decent one good photo taken enough light come low light prone distort suffici video chatsspeakerspeak bed bottom front laptop would rate 6 10 audibl fine nois outsid disturb audibl allverdictthi laptop good compactnessif averag user need product work like work excel sheet make present fine choic say plastiki finish perform consid money seem ok\n Positive 488 days laptop complaints stuffs better aspect laptop one onebuildi laptop vacation outdoor most part firm light weight whole plastic enough place need keypad light work dark top good texture hp logo usb port none lights webcam right side laptop hdd notification lan port right side usual cd reader writer keypads tactile clicky front side card reader left hdmi back u battery down sideperformancei laptop daily presentation stuffs amd a6 g4 radeon lags massive slow downs heavy software adobe games gta amd compatibility issues emulators antivirus defender good adobe photoshop games company heroes littlestandbybattery hours usage average opinion battery.it locks back bottom laptop pipe battery out.screenscreen bright anti glare good sunlight difficultycamerait mega pixel camera microphone decent one good photo enough lighting low light prone distortion sufficient video chatsspeakerspeaker bottom front laptop audible noise disturbance audible laptop good compactness.if average user productive works excel sheets presentation fine choice only plastiky finish performance money ok
383 the screen is awesome, anti glare, the battery life decent and the keyboard is good. Slight heating on the bottom but not much although summers yet to arrive. Sound is very good, overall at this price point, excellent\n screen awesom anti glare batteri life decent keyboard good slight heat bottom much although summer yet arriv sound good overal price point excellent\n Positive 38 screen awesome anti glare battery life decent keyboard good slight heating bottom summers sound good price point excellent
384 Cheaply Build. The Plastic is brittle. Lags like your grandmother. It takes forever to open windows.\n cheapli build plastic brittl lag like grandmoth take forev open windows\n Neutral 16 plastic brittle grandmother windows
385 It's perfect for school and office use. Very cheap and beneficiao. Loved it in one go.very smooth and easy to use. Must buy\n perfect school offic use cheap beneficiao love one goveri smooth easi use must buy\n Positive 23 perfect school office use cheap beneficiao go.very smooth easy
386 I got this one day before used it,loving it,no lag,no stuck,genuinely HP.HP product and ordering on Amazon is deadly combination.Thank you Amajaan for delivering on time.\n got one day use itlov itno lagno stuckgenuin hphp product order amazon deadli combinationthank amajaan deliv time\n Positive 27 day lag stuck product ordering amazon time
387 Good product meet my expectations\n good product meet expectations\n Positive 5 good product expectations
388 Unworthy product . Don't go with this.dont buy this one.\n unworthi product dont go thisdont buy one\n Neutral 10 unworthy product this.dont one
389 Good laptop for this price, looks nice and performance not bad at all\n good laptop price look nice perform bad all\n Positive 13 good laptop price nice performance bad
390 Process slow sound system bad\n process slow sound system bad\n Negative 5 process slow sound system bad
391 Awesome Product\n awesom product\n Neutral 2 awesome product
392 Hanging problem\n hang problem\n Negative 2 problem
393 It's been using this laptop for 2 years. It's extremely heavy, with no battery life and I had to repair it so many times. Honestly, don't buy it.\n use laptop 2 year extrem heavi batteri life repair mani time honestli dont buy it\n Neutral 28 laptop years heavy battery life many times
394 Laptop seems good. Let's see how the performance is. Will update the review after usage. Not received any invoice.\n laptop seem good let see perform updat review usag receiv invoice\n Positive 19 laptop good performance review usage invoice
395 Simple Superb Quality 👌❤️😻\n simpl superb qualiti 👌❤️😻\n Positive 4 simple superb quality
396 Good and smart\n good smart\n Positive 3 good smart
397 Keyboard not working\n keyboard working\n Neutral 3 keyboard
398 Battery backup is not good\n batteri backup good\n Positive 5 battery backup good
399 The name and quality of HP, 1 TB HDD, 4 gb RAM, latest 9th generation A9-9125 processor, 5 hrs. battery back up, fast speed (2.30 GHz of 9th gen. processor i.e. of today is equal to 3.5 GHz of the competition). Very good for multi-tasking etc. At the same time do not make the mistake of thinking it has similar capabilities to that of gaming laptops. For below 21K this is best and cheapest laptop you can buy.\n name qualiti hp 1 tb hdd 4 gb ram latest 9th gener a99125 processor 5 hr batteri back fast speed 230 ghz 9th gen processor ie today equal 35 ghz competit good multitask etc time make mistak think similar capabl game laptop 21k best cheapest laptop buy\n Positive 79 name quality hp tb hdd gb ram latest 9th generation a9 processor hrs battery fast speed ghz 9th gen . processor today equal ghz competition good multi - tasking same time mistake thinking similar capabilities gaming laptops 21k best cheapest laptop
400 Product was delivered in time, even though I am not prime member 👌Setup of system done , MS office activated. Hope the performance will be goodValue for money.\n product deliv time even though prime member 👌setup system done ms offic activ hope perform goodvalu money\n Positive 28 product time prime member setup system ms office performance money
401 Very nice laptop.\n nice laptop\n Positive 3 nice laptop
402 This is my fourth HP product. Running smooth. Battery stayed four and half hours with few video streaming. Full recharge took one and half hours. Sound and graphics are excellent.\n fourth hp product run smooth batteri stay four half hour video stream full recharg took one half hour sound graphic excellent\n Positive 30 fourth hp product smooth battery half hours few video streaming full recharge half hours sound graphics excellent
403 I bought this laptop (HP 14q cs0018-tu) for 19k INR in July 2019 on Prime day. It's really fast because it has an NVMe SSD with read speeds exceeding 1 GB/s! Windows 10 boots in less than 5 seconds. This is probably the cheapest laptop with a fast NVMe SSD (Toshiba KBG30ZMV256G). The Kaby Lake-R Pentium Gold processor 4417U has 2 cores and 4 threads and is more or less equivalent to a Core i3. The laptop is thin and light, and the keyboard is decent. The charging brick is also small and portable with sufficient cable length.The major downside is the screen which is a sub-Full HD (1366x768) panel, but that's quite OK considering the price point. The other downside I noticed is that the two speakers are not symmetrically placed, but that's just nit picking.Overall, I'm really happy with this laptop. It's great for web browsing, productivity/office work, and light programming. Easily the best laptop in the 20k INR segment and will handily beat more expensive laptops that have a 5400 rpm HDD.\n bought laptop hp 14q cs0018tu 19k inr juli 2019 prime day realli fast nvme ssd read speed exceed 1 gb window 10 boot less 5 second probabl cheapest laptop fast nvme ssd toshiba kbg30zmv256g kabi laker pentium gold processor 4417u 2 core 4 thread less equival core i3 laptop thin light keyboard decent charg brick also small portabl suffici cabl lengthth major downsid screen subful hd 1366x768 panel that quit ok consid price point downsid notic two speaker symmetr place that nit pickingoveral im realli happi laptop great web brows productivityoffic work light program easili best laptop 20k inr segment handili beat expens laptop 5400 rpm hdd\n Positive 176 laptop hp 14q cs0018-tu 19k inr july prime day fast nvme ssd read speeds gb s windows boots less seconds cheapest laptop fast nvme ssd toshiba kbg30zmv256 g kaby lake r pentium gold processor cores threads equivalent core i3 laptop thin light keyboard decent brick small portable sufficient cable length.the major downside screen sub - full hd panel ok price point other downside speakers nit picking.overall happy laptop great web browsing productivity office work light programming best laptop inr segment expensive laptops rpm hdd
404 First of all, I got this for about Rs 19200 and I will be reviewing as per that price.The body is plastic but not that shiny plastic HP usually provides that gets scratched easily.1. Display is Fine. Not too good or bad.2. Keyboard is fine again. No backlit keyboard as expected for the price.3. Mouse pad is a bit slow but you can always increase the sensitivity.4. Gesture support is there.5. Battery Life is good. I charged the laptop to 100 and watched Netflix offline for 2 hours on full brightness and earphones. The battery then dropped to 85. SO YOU CAN EXPECT GOOD BACKUP6. GAMING: I played basic games like GTA Vice City and it ran fine as expected.7. SSD: OMG! This makes a huge difference. The PC boots in about 5 seconds. Even though the storage is only 256GB but it is worth it as it makes the laptop faster that my other HP with i5 8th gen processor8. You get 2 USB 2.0, 1 USB 3.0, 1 Ethernet, 1 HDMI, 1 headphone jack, 1 SD card reader as ports.9. Speakers are good. Not too loud nor too tiny.10. I think it has a small fan. I did not face any heating issues.11. Webcam is there of OK qualityOverall a very good buy under 20K. I would definitely recommend this product\n first got rs 19200 review per priceth bodi plastic shini plastic hp usual provid get scratch easily1 display fine good bad2 keyboard fine backlit keyboard expect price3 mous pad bit slow alway increas sensitivity4 gestur support there5 batteri life good charg laptop 100 watch netflix offlin 2 hour full bright earphon batteri drop 85 expect good backup6 game play basic game like gta vice citi ran fine expected7 ssd omg make huge differ pc boot 5 second even though storag 256gb worth make laptop faster hp i5 8th gen processor8 get 2 usb 20 1 usb 30 1 ethernet 1 hdmi 1 headphon jack 1 sd card reader ports9 speaker good loud tiny10 think small fan face heat issues11 webcam ok qualityoveral good buy 20k would definit recommend product\n Positive 224 rs price.the body plastic shiny plastic hp easily.1 display fine good bad.2 keyboard fine backlit keyboard price.3 mouse pad bit slow sensitivity.4 gesture support there.5 battery life good laptop netflix offline hours full brightness earphones battery good backup6 gaming basic games gta vice city expected.7 ssd huge difference pc boots seconds storage gb worth laptop other hp i5 8th gen processor8 usb usb ethernet hdmi headphone jack sd card reader ports.9 speakers good loud tiny.10 small fan heating issues.11 webcam ok qualityoverall good buy 20k product
405 Got this for 19k on prime day deal. Good laptop for school students. 256gb ssd, reasonable processor 4417U which is power efficient. RAM is 4gb, I will upgrade later. Resolution is only 720p, but can't complain at this price.Overall highly recommed this. Looks and feels like premium laptop.Windows 10 is great. This laptop does not come with latest 1903 build. Easily updatable via windows update.First thing you do after setuo, uninstall mccafe software. No need for it, use windows defender, built in antivirus software.Also uninstall other crapware like dropbox, hp apps etc.\n got 19k prime day deal good laptop school student 256gb ssd reason processor 4417u power effici ram 4gb upgrad later resolut 720p cant complain priceoveral highli recom look feel like premium laptopwindow 10 great laptop come latest 1903 build easili updat via window updatefirst thing setuo uninstal mccafe softwar need use window defend built antiviru softwarealso uninstal crapwar like dropbox hp app etc\n Positive 92 19k prime day deal good laptop school students gb ssd reasonable processor power efficient ram gb resolution price.overall premium laptop.windows great laptop latest build updatable windows update.first thing setuo uninstall mccafe software need windows defender antivirus software.also other crapware dropbox hp apps
406 Just received the laptop. Everything is expected. Display so smooth and sharp. Loving it. Windows and office both got activated. Thin & really light. Booting is slow actually don't know why. Will write a review again in couple of days. Go for it!\n receiv laptop everyth expect display smooth sharp love window offic got activ thin realli light boot slow actual dont know write review coupl day go it\n Positive 44 laptop smooth sharp windows office thin light booting slow review couple days
407 I had great hopes from this laptop. And I really needed it to work as expected, as a laptop is crucial for my business. But it stopped working within 4 days of receiving and now I'm stuck, for god knows how long.I hope it gets more negative ratings to show everyone what it truly is....garbage.Bottomline: Avoid buying cheap laptops from Amazon.You get what you pay for!\n i great hope laptop realli need work expect laptop crucial busi stop work within 4 day receiv im stuck god know longi hope get neg rate show everyon truli isgarbagebottomlin avoid buy cheap laptop amazony get pay for\n Positive 66 great hopes laptop laptop crucial business days receiving god long.i negative ratings garbage.bottomline cheap laptops
408 Pros:- This is a good entry level laptop with super compact build quality- Very light laptop and easy to carry- The keypad is great, comes with 1-month subscription of McAfee and also comes with Office 2019 School edition- Sound quality, picture quality are all top class. Very good for home usage and light office work- Good options on the touchpadCons:- No touch screen- No backlit keyboard- No extendable memory slot to raise to 16 GB RAM\n pro good entri level laptop super compact build qualiti light laptop easi carri keypad great come 1month subscript mcafe also come offic 2019 school edit sound qualiti pictur qualiti top class good home usag light offic work good option touchpadcon touch screen backlit keyboard extend memori slot rais 16 gb ram\n Positive 76 pros:- good entry level laptop compact light laptop easy keypad great subscription mcafee office school edition- sound quality picture quality top class good home usage light office work- good options touchpadcons:- touch screen- extendable memory slot gb ram
409 Faster than the high end laptops. it is because of SSD technology used.Tried watching 1080p videos from youtube. no lag in anywhere.sound quality is good in headphones. speakers are ok for normal use.boot time is at its best. less than 10 seconds.battery lasts more than expected. around 4-5 hours for moderate use.no cd drive is there. that is not required nowadays. so not an issue.windows 10 home and student is installed and activated for lifetime.no heating spotted during the operation. this is because of SSD i think.webcam is good for normal chats. not a HD one. but still good.display is not HD. but still good for watching movies.never tried playing any games.weight is less compared to other laptops in this range.one downside is the office version is trial only. need to pay around 8k for lifetime license.PS:please uninstall the mcafee and other junk softwares first on first boot itself. windows defender is good enough to protect the pc.Price is oscillating in amazon. track via eoffersindia to get the price drop alert and then buy.\n faster high end laptop ssd technolog usedtri watch 1080p video youtub lag anywheresound qualiti good headphon speaker ok normal useboot time best less 10 secondsbatteri last expect around 45 hour moder useno cd drive requir nowaday issuewindow 10 home student instal activ lifetimeno heat spot oper ssd thinkwebcam good normal chat hd one still gooddisplay hd still good watch moviesnev tri play gamesweight less compar laptop rangeon downsid offic version trial need pay around 8k lifetim licensepspleas uninstal mcafe junk softwar first first boot window defend good enough protect pcprice oscil amazon track via eoffersindia get price drop alert buy\n Positive 174 high end laptops ssd technology 1080p videos youtube lag anywhere.sound quality good headphones speakers ok normal use.boot time best less seconds.battery hours moderate use.no cd drive home student heating operation ssd think.webcam good normal chats hd one good.display hd good movies.never games.weight other laptops range.one downside office version trial 8k lifetime mcafee other junk softwares first boot windows defender good pc.price amazon eoffersindia price drop alert
410 All these seems a good customized specifications for fast performance because of 256GB SSD PCIe NVMe SSD. The NVMe SSD is even faster and advanced than normal SSD. So understand the difference. So this HDD is more fast in SSD's.But as per the description, there is no DVD Drive. Please beware of that.Pros:1.Thin2.Handy and weight less.3.Full HD.4.Sound is good.5.Fast/Prompt Responsive.6.PCIe NVMe SSDCons:1.No Keyboard Back light.2.No DVD Writer.3.Microsoft Product activation not working properly for few devices.4.When using high volumes, speakers getting cracking sound.5. No VGA slot. (Very few people still use, not much issue).6. No USB C-Port.7. No USB 3.1Let's see how it work's moving ahead.Overall Best Buy for working professionals with decent performance because of 256GB SSD PCIe NVMe SSD.\n seem good custom specif fast perform 256gb ssd pcie nvme ssd nvme ssd even faster advanc normal ssd understand differ hdd fast ssdsbut per descript dvd drive pleas bewar thatpros1thin2handi weight less3ful hd4sound good5fastprompt responsive6pci nvme ssdcons1no keyboard back light2no dvd writer3microsoft product activ work properli devices4when use high volum speaker get crack sound5 vga slot peopl still use much issue6 usb cport7 usb 31let see work move aheadoveral best buy work profession decent perform 256gb ssd pcie nvme ssd\n Positive 121 good specifications fast performance gb ssd pcie nvme ssd nvme ssd advanced normal ssd difference hdd ssd's.but description dvd drive that.pros:1.thin2.handy weight hd.4.sound good.5.fast prompt nvme ssdcons:1.no keyboard light.2.no dvd writer.3.microsoft product activation few high volumes speakers sound.5 vga slot few people much issue).6 usb c port.7 usb 3.1let ahead.overall professionals decent performance gb ssd pcie nvme ssd
411 Bought this as my back to college laptop and it didn't disappoint. My all friends are considering this I just bought another 1tb ssd with this and whole set up just took off.Played whole assassin's Creed black flag a little lag but certainly playable.Also all of my engineering softwares run smoothly never experienced any lag(except sucky WiFi at my college)Overall best laptop for 20k and buy another HDD you've got production power house in budget.\n bought back colleg laptop didnt disappoint friend consid bought anoth 1tb ssd whole set took offplay whole assassin creed black flag littl lag certainli playablealso engin softwar run smoothli never experienc lagexcept sucki wifi collegeoveral best laptop 20k buy anoth hdd youv got product power hous budget\n Positive 75 back college laptop friends tb ssd whole set off.played whole assassin creed black flag little lag engineering softwares lag(except sucky wifi college)overall best laptop 20k hdd production power house budget
412 It was delivered as oer promised date and product was in good condition. I am hoping HP is good brand and recepient will make best use of same\n deliv oer promis date product good condit hope hp good brand recepi make best use same\n Positive 28 oer date product good condition hp good brand recepient best use same
413 Great laptop for the price. Got it at19.5k. Battery life is decent about 6-7 hours, feel and finish is pretty decent. Great SSD which makes it real fast, boot-up time is 12-15 seconds.Negatives- Keyboard is just okay and HD resolution, but at this price, these cons are well acceptable.\n great laptop price got at195k batteri life decent 67 hour feel finish pretti decent great ssd make real fast bootup time 1215 secondsneg keyboard okay hd resolut price con well acceptable\n Positive 49 great laptop price at19.5k battery life decent hours finish decent great ssd boot time seconds.negatives- keyboard okay hd resolution price cons acceptable
414 Probably the first one to review the 4GB RAM, 256GB SSD model.Got this on Independence day sales for 30,390 with 10% instant discount on SBI card. For people wondering about the performance, it has 256Gb SSD which makes the performance and boot up faster than the 1Tb HDD model. It's perfect for home use and student use, not for gamers or photoshop.My advice go for it, if you belong to the above usage categories as this is the best config available at this price point. SSD over 8GB RAM and 1TB HDD anytime, because you can always add extra RAM and have a portable HDD if needed.\n probabl first one review 4gb ram 256gb ssd modelgot independ day sale 30390 10 instant discount sbi card peopl wonder perform 256gb ssd make perform boot faster 1tb hdd model perfect home use student use gamer photoshopmi advic go belong usag categori best config avail price point ssd 8gb ram 1tb hdd anytim alway add extra ram portabl hdd needed\n Positive 107 first gb ram gb ssd model.got independence day sales % instant discount sbi card people performance gb ssd performance boot tb hdd model perfect home use student use gamers photoshop.my advice above usage categories best config available price point ssd gb ram tb hdd extra ram portable hdd
415 The product is not good. Start lagging from the very first day. It Look beautiful but it doesn't work beautiful. Yeh toh tatti hai. And you can't even return it🤷‍♀🤷‍♀🤷‍♀\n product good start lag first day look beauti doesnt work beauti yeh toh tatti hai cant even return it🤷‍♀🤷‍♀🤷‍♀\n Positive 30 product good first day beautiful beautiful yeh toh tatti hai
416 After using a month I can't stop myself from writing a review. Due to SSD the laptop become a rocket. Wow !!Please note that it's not a gaming laptop. But best for the normal official work,web browsing, simple editing etc.\n use month cant stop write review due ssd laptop becom rocket wow pleas note game laptop best normal offici workweb brows simpl edit etc\n Positive 41 month review laptop rocket gaming laptop best normal official work web browsing simple editing
417 Screen is really good... Display is just awesome... Laptop is sleek and lightweight... However the battery backup is pathetic... At the best 3-4 hours maximum... Comes with a 30 day trial McAfee anti-virus free... So be careful if you are installing any other anti virus software... Ensure you de-install the McAfee anti virus completely before you install any other ant virus software... Else the system crashes frequently... Had a similar problem and then had to restore factory settings... Overall a good laptop but needs a better battery backup\n screen realli good display awesom laptop sleek lightweight howev batteri backup pathet best 34 hour maximum come 30 day trial mcafe antiviru free care instal anti viru softwar ensur deinstal mcafe anti viru complet instal ant viru softwar els system crash frequent similar problem restor factori set overal good laptop need better batteri backup\n Positive 88 screen good display awesome laptop sleek lightweight battery backup pathetic best hours maximum day trial mcafee anti - virus free careful other anti virus software - mcafee anti virus other ant virus software system similar problem factory settings good laptop better battery backup
418 Good product for basic usage. Feels lightweight but performance is sturdy. Battery is good. Genuine windows 10 is a bonus at this price point. 😊\n good product basic usag feel lightweight perform sturdi batteri good genuin window 10 bonu price point 😊\n Positive 25 good product basic usage lightweight performance sturdy battery good genuine windows bonus price point
419 Go for ssd laptops.very high performance speed. Win10 loads in 5-10 second with Kaspersky internet security. I3 and i5 are over priced. You won't notice any delay with processing speed. It's at par with i3 processor. Also as it's sdd weight is very light. Go for it.\n go ssd laptopsveri high perform speed win10 load 510 second kasperski internet secur i3 i5 price wont notic delay process speed par i3 processor also sdd weight light go it\n Positive 47 ssd laptops.very high performance speed win10 loads second kaspersky internet security i3 i5 delay processing speed par i3 processor sdd weight light
420 Everything's good performance,sound,display not for gaming though super comfortable slim and light\n everyth good performancesounddisplay game though super comfort slim light\n Positive 12 good performance sound super comfortable slim light
421 The laptop has a hardware problem surrounding the CPU usage. From the day I have bought it, I am seeing a 100% CPU usage for Skype and Windows Explorer running in my laptop. I think this is a very minimum that one would expect to run smoothly, but the laptop gets heated up and it doesn't respond to any clicks. From next day onwards laptop is started auto-repairing, auto-fixing by itself. Cannot open the laptop till today. Horrible experience after buying this.\n laptop hardwar problem surround cpu usag day bought see 100 cpu usag skype window explor run laptop think minimum one would expect run smoothli laptop get heat doesnt respond click next day onward laptop start autorepair autofix cannot open laptop till today horribl experi buy this\n Negative 82 laptop hardware problem cpu usage day % cpu usage skype windows laptop minimum laptop clicks next day laptop auto repairing auto fixing laptop today horrible experience
422 Amazing product and has a stylist look to it. Photography is my hobby and I bought this to meet my needs of sharpening picture on Adobe Photoshop. But ever since I start editing my pics on Photoshop the systems works surprisingly slow for a i5 with 8 GB. Expected better performance.\n amaz product stylist look photographi hobbi bought meet need sharpen pictur adob photoshop ever sinc start edit pic photoshop system work surprisingli slow i5 8 gb expect better performance\n Positive 51 amazing product stylist look photography hobby needs picture adobe photoshop pics photoshop systems slow i5 gb better performance
423 Good specification from world brand HP, licenced Windows 10. Suitable for colleges students. cost effective, only problem is MS Office trial version for 30 days\n good specif world brand hp licenc window 10 suitabl colleg student cost effect problem ms offic trial version 30 days\n Positive 25 good specification world brand hp licenced windows suitable colleges students cost effective problem ms office trial version days
424 Excellent Purchase ...Reliable Brand ..Smooth OS.. Got it for 21k ....Looks like a Good Deal 🤗\n excel purchas reliabl brand smooth os got 21k look like good deal 🤗\n Positive 16 excellent purchase reliable brand smooth os 21k good deal
425 Battery life last 2 or 3 hours max as normal uses, screen quality little bit lighter, weight is fine as per the mention but I got only laptop and charger nothing....very simple, no bag etc. And also packaged was worst and simplicity just cover up by cartoon .....but I'm happy doing offer I got this for Rs.19.999 in range this stuff is good but if the is higher than 20k then don't go for this stuff.\n batteri life last 2 3 hour max normal use screen qualiti littl bit lighter weight fine per mention got laptop charger nothingveri simpl bag etc also packag worst simplic cover cartoon im happi offer got rs19999 rang stuff good higher 20k dont go stuff\n Negative 78 battery life last hours max normal uses screen quality little bit lighter weight fine mention laptop charger simple bag worst simplicity cartoon happy offer rs.19.999 range stuff good higher stuff
426 Hello readers, reviewing this laptop after 5 days limited usage. hope you find my review helpful to make decision..1. Very light weight, as good as mac...!!2. Incredebly fast... it having SSD... Windows 10 boots in less than 5 sec..!!3. Keyboard quality also good, Sound quality also very good with stereo effect.4. Looks premium product.. Build quality is very good.5. It is a new generation's lappy, so having inbuilt battery, so no user serviciable part inside..6. Pentium Gold Processor which is as good as Core i3 + 4 GB RAM + 256 GB SSD + Windows 10 Licence Copy... Bang for the bucks...!!!A decent laptop for your basic work like ms office, internet surfing, youtube, etc. Please note the config is made for normal office use so dont except to autocad, minitab to run on this. Also it is not made for gaming like nfs the run and all.If you are clear about your use and exceptions, this laptop is CHota Packet Bada Dhamaka...I purchased this in only 20K in Great indian Sale. and what you are getting in this prise?? Brand like HP along with SSD. Compared to traditional SATA HDD it makes huge diffanance. So fast for working, premium feel, Lightweight like Mac.. Must buy... If you are like to dump all the gigs of movies into your laptop, you can purchase external usb drive for that purpose. For our daily usage SSD making huge diffarance than HDD. also it having 2 USB 3.0 ports making faster file transfer within compatable devices.Please note this dosent have DVD-RW Drive, Battery also non-removable, Laptop Bag also not provided.I am very happy with my purchase.. Thanks amazon.in for making my day....!!\n hello reader review laptop 5 day limit usag hope find review help make decision1 light weight good mac2 incredebl fast ssd window 10 boot less 5 sec3 keyboard qualiti also good sound qualiti also good stereo effect4 look premium product build qualiti good5 new gener lappi inbuilt batteri user servici part inside6 pentium gold processor good core i3 4 gb ram 256 gb ssd window 10 licenc copi bang bucksa decent laptop basic work like ms offic internet surf youtub etc pleas note config made normal offic use dont except autocad minitab run also made game like nf run allif clear use except laptop chota packet bada dhamakai purchas 20k great indian sale get prise brand like hp along ssd compar tradit sata hdd make huge diffan fast work premium feel lightweight like mac must buy like dump gig movi laptop purchas extern usb drive purpos daili usag ssd make huge diffar hdd also 2 usb 30 port make faster file transfer within compat devicespleas note dosent dvdrw drive batteri also nonremov laptop bag also providedi happi purchas thank amazonin make day\n Positive 280 readers laptop days limited usage review helpful decision light weight good mac ssd windows boots less sec keyboard quality good sound quality good stereo effect.4 premium product build quality good.5 new generation lappy inbuilt battery user serviciable part pentium gold processor good core i3 gb ram gb ssd licence copy bang bucks decent laptop basic work ms office internet surfing youtube config normal office use autocad minitab nfs run all.if clear use exceptions laptop chota packet bada dhamaka great indian sale prise brand hp ssd traditional sata hdd huge diffanance working premium lightweight mac like gigs movies laptop external usb drive purpose daily usage ssd huge diffarance hdd usb ports faster file transfer compatable devices.please note dosent dvd rw drive battery non - removable laptop bag provided.i happy purchase thanks day
427 Boots up in max 5 seconds due to ssd.Very nice windows 10.4gb ram enough..Rest is fine..Good for students...I do programming and daily stuff like reading pdf and watching videos.It works like a charm.Bought it in 20k.Really good value for money product.Completely satisfied!\n boot max 5 second due ssdveri nice window 104gb ram enoughrest finegood studentsi program daili stuff like read pdf watch videosit work like charmbought 20krealli good valu money productcomplet satisfied\n Positive 42 boots max seconds due nice windows gb rest fine good students programming daily stuff pdf charm.bought good value money satisfied
428 1. It takes only 4-5 sec to on the laptop and ready to work for.2. External hardware is made of very lower quality plastic.3. Screen Color is ok, don't expect much more in this price.4. very light weight.5. Battery backup is quite nice.6. For MS office, i will recommend to buy a genuine office from snapdeal.com for ₹ 700-900 range.7. Battery is not removable like any smartphone today. For replacement of battery, you have to visit hp service center.\n 1 take 45 sec laptop readi work for2 extern hardwar made lower qualiti plastic3 screen color ok dont expect much price4 light weight5 batteri backup quit nice6 ms offic recommend buy genuin offic snapdealcom ₹ 700900 range7 batteri remov like smartphon today replac batteri visit hp servic center\n Positive 79 sec laptop ready for.2 external hardware lower quality plastic.3 screen color ok more price.4 light weight.5 battery backup ms office genuine office range.7 battery removable smartphone today replacement battery hp service center
429 Very good works as expected. I never expected Windows would be this good. I am also using a Macbook Pro and it seems both are at par in terms of speed. The resolution is just okay and works for me as i don't need high resolution screen. I am using it just for my personal use and no high processing application.\n good work expect never expect window would good also use macbook pro seem par term speed resolut okay work dont need high resolut screen use person use high process application\n Positive 61 good works windows good macbook pro par terms speed resolution okay high resolution screen personal use high processing application
430 Light for carry like a Book/copyDisplay have the minimum colour quality,Light speaker sound,\n light carri like bookcopydisplay minimum colour qualitylight speaker sound\n Positive 13 light book copydisplay minimum colour quality light speaker sound
431 To start with the price point ...and considering this is <20K, this is one of the smoothest operating laptop I have used in this range. The SSD disk works wonders. Battery backup is pretty good and for house hold requirements and even beyond, this works perfect. The overall build is good and kind of mat finish makes it even better and scratch resistant.Considering 14" screen, the resolution is OK, sound quality is pretty good. Very good value for money.\n start price point consid 20k one smoothest oper laptop use rang ssd disk work wonder batteri backup pretti good hous hold requir even beyond work perfect overal build good kind mat finish make even better scratch resistantconsid 14 screen resolut ok sound qualiti pretti good good valu money\n Positive 79 price point 20k smoothest operating laptop range ssd disk wonders battery backup good house requirements works perfect overall build good mat finish screen resolution ok sound quality good good value money
432 Positive reviews of this product are just making you fool. This product is useless. For sure you will regret if you buy this product.\n posit review product make fool product useless sure regret buy product\n Negative 24 positive reviews product product useless sure product
433 I got this laptop for about Rs. 16.2k - combining exchange and festival offers. The smart thing that HP did with the laptop is replacing the standard 1 TB HDD generally available at these price points with a 256 GB HDD. For most home purposes - light office work and streaming - this is actually the better choice. The SSD has given it better battery life, the laptop is pretty lightweight and suffices for all homely work. Combined with a pre-loaded Windows, this is a steal at this price.\n got laptop rs 162k combin exchang festiv offer smart thing hp laptop replac standard 1 tb hdd gener avail price point 256 gb hdd home purpos light offic work stream actual better choic ssd given better batteri life laptop pretti lightweight suffic home work combin preload window steal price\n Positive 89 laptop rs exchange festival smart thing hp laptop standard tb hdd available price points gb hdd most home purposes light office work streaming better choice ssd better battery life laptop lightweight homely work pre - loaded windows steal price
434 Black dotted line on screen within 15 days use .Worst product\n black dot line screen within 15 day use worst product\n Negative 11 black line screen days product
435 the laptop is really good and the delivery was also fast but i did not receive an invoice for my product\n laptop realli good deliveri also fast receiv invoic product\n Positive 21 laptop good delivery fast invoice product
436 Hello, I have bought this laptop during Amazon sale by exchanging my old dell i3 laptop which is the best deal. I must say boot up and shut down is super fast due to SSD. My usage is very minimal such as web browsing, watching movies, using MS office etc. for which it's a perfect buy. I am also using external hard drive to fulfill my additional need for space. If I compare it with my old dell Vostro 3446 laptop then it's a great value for money.\n hello bought laptop amazon sale exchang old dell i3 laptop best deal must say boot shut super fast due ssd usag minim web brows watch movi use ms offic etc perfect buy also use extern hard drive fulfil addit need space compar old dell vostro 3446 laptop great valu money\n Positive 88 laptop amazon sale old dell i3 laptop best deal boot due ssd usage minimal such web browsing movies ms office perfect buy external hard drive additional need space old dell vostro laptop great value money
437 Just received today. At first I wasn't impressed with the product as it is average in look because I was planning to go for natural silver colour but unfortunately by checking out price with ssd, I choosen to buy this one rather than wasting another 10-15k. Performance wise product is great. Battery life is also good. Screen resolution will is average. Overall value for money. No other product or brand offer same configuration at such an amazing price point. Got it in 18240.\n receiv today first wasnt impress product averag look plan go natur silver colour unfortun check price ssd choosen buy one rather wast anoth 1015k perform wise product great batteri life also good screen resolut averag overal valu money product brand offer configur amaz price point got 18240\n Positive 83 today product average look natural silver colour price ssd one 15k performance wise product great battery life good screen resolution average overall value money other product brand offer same configuration amazing price point
438 I ordered this laptop for 18k (with Bank Offer) during the Great Indian Festival Sale. The laptop was delivered the next day and the packaging was great, too. Following is my review after using it for 15 days.Performance:This is the only laptop that comes with an SSD at this price point, and trust me, it makes a huge difference in the responsiveness of the system and the boot up speed. Windows boots in 4-5 seconds, apps such as Microsoft Word, Chrome, etc. start instantly. The Pentium Dual Core comes with hyperthreading, which means 4 logical cores. It is a decent performer when it comes to Web Browsing, Word Processing, Video Playback, etc. The best part is that although it comes with 4GB of RAM out of the box, it can easily be upgraded to 8 or even 12GB, since one RAM slot is empty. It also has a slot for a 2.5 inch drive, so another SSD or HDD can be added if the 256GB doesn't suffice. Word of advice: The laptop does come with a ton of bloatware, so be sure to uninstall the needless games and software.Build Quality:It definitely feels like it's a more expensive laptop than it really is. Although the chassis is made out of plastic, it is very good quality. There's very little flex on the keyboard deck as well as the screen. The keyboard keys feel tactile with good travel and the trackpad offers accurate tracking with reliable gesture control.Media Consumption:The screen does go decently bright but the colours aren't as punchy as I'd like. The 14 inch display is a good size. Also the resolution is limited to 1366x768, but at this price, I guess you really can't complain. The laptop doesn't break a sweat even when playing 4K Videos, locally or YouTube, so you can always use an external display with the peace of mind that the hardware can handle it. The speakers get loud and stay clear even at high volume. The bass is a little lacking, though.Battery Life:On light to medium usage, such as YouTube video playback, web browsing, word processing, etc I got around 6-7 hours of battery on a single charge. The laptop also comes with fast charging, so it can be charged from 0 to 100 in under 2 hours.Final thoughts:This laptop was meant as a replacement for an old desktop computer for my dad. We're both very happy with the purchase. If you're in need of a secondary PC or are looking for a computer to replace that old desktop your parents are using, this laptop should definitely be taken under consideration. Be sure to buy this laptop during a sale, since this particular configuration which is normally available for 25k, goes down to 20k. A bank offer only sweetens the deal further.\n order laptop 18k bank offer great indian festiv sale laptop deliv next day packag great follow review use 15 daysperformancethi laptop come ssd price point trust make huge differ respons system boot speed window boot 45 second app microsoft word chrome etc start instantli pentium dual core come hyperthread mean 4 logic core decent perform come web brows word process video playback etc best part although come 4gb ram box easili upgrad 8 even 12gb sinc one ram slot empti also slot 25 inch drive anoth ssd hdd ad 256gb doesnt suffic word advic laptop come ton bloatwar sure uninstal needless game softwarebuild qualityit definit feel like expens laptop realli although chassi made plastic good qualiti there littl flex keyboard deck well screen keyboard key feel tactil good travel trackpad offer accur track reliabl gestur controlmedia consumptionth screen go decent bright colour arent punchi id like 14 inch display good size also resolut limit 1366x768 price guess realli cant complain laptop doesnt break sweat even play 4k video local youtub alway use extern display peac mind hardwar handl speaker get loud stay clear even high volum bass littl lack thoughbatteri lifeon light medium usag youtub video playback web brows word process etc got around 67 hour batteri singl charg laptop also come fast charg charg 0 100 2 hoursfin thoughtsthi laptop meant replac old desktop comput dad happi purchas your need secondari pc look comput replac old desktop parent use laptop definit taken consider sure buy laptop sale sinc particular configur normal avail 25k goe 20k bank offer sweeten deal further\n Positive 468 laptop 18k bank offer great indian festival sale laptop next day packaging great review days.performance only laptop ssd price point huge difference responsiveness system boot speed windows boots seconds apps such microsoft word chrome pentium dual core hyperthreading logical cores decent performer web browsing word processing video playback best part gb ram box gb ram slot empty slot inch drive ssd hdd gb word advice laptop ton bloatware sure needless games software.build quality expensive laptop chassis plastic good quality little flex keyboard deck screen keyboard keys tactile good travel trackpad accurate tracking reliable gesture control.media consumption screen bright colours punchy inch display good size resolution price laptop sweat videos youtube external display peace mind hardware speakers loud clear high volume bass little lacking though.battery life light medium usage such youtube video playback web browsing word processing hours battery single charge laptop fast charging hours.final thoughts laptop replacement old desktop computer dad happy purchase need secondary pc computer old desktop parents laptop consideration sure laptop sale particular configuration available 25k bank offer deal
439 I'm very much satisfied with this laptop. The booting speed, application speed (daily use application like browser, etc.) Battery life is outstanding. Very comfortable for daily use, especially for typing, browsing, reading books and taking notes. Bought for 13k during Amazon sale, I'm more than happy.Bonus point: Got it from Appario seller which is a genuine product.\n im much satisfi laptop boot speed applic speed daili use applic like browser etc batteri life outstand comfort daili use especi type brows read book take note bought 13k amazon sale im happybonu point got appario seller genuin product\n Positive 57 satisfied laptop booting speed application speed daily use application browser battery life outstanding comfortable daily use typing browsing books notes 13k amazon sale more happy.bonus point appario seller genuine product
440 I bought it after checking that it has i5. My earlier i5 hp laptop was good when it came heavy computing tasks. I did a comparison of this one with old laptop by running simple excel aggregation functions. This one stood out in the test. So frankly I was happy initially.But then when I used it for operations that took hours to complete I saw that it froze frequently. The CPU hits 100% pretty fast. I guess the freezing is due to overheating. The exhaust ducts are placed in a such way that they get completely covered when flap is down. That could be reason.Otherwise it works fine.\n bought check i5 earlier i5 hp laptop good came heavi comput task comparison one old laptop run simpl excel aggreg function one stood test frankli happi initiallybut use oper took hour complet saw froze frequent cpu hit 100 pretti fast guess freez due overh exhaust duct place way get complet cover flap could reasonotherwis work fine\n Positive 108 i5 earlier i5 hp laptop good heavy computing tasks comparison old laptop simple excel aggregation functions one test happy operations hours cpu % freezing due exhaust ducts such way flap reason.otherwise
441 Awesome built at this price range 18k with NVME SSD boots with in 2 sec...it's doesn't feel like low pentium processor Its like regular i3 i5 with HDD Even slower then this pentium with NVME SSD . though i3 i5 is more processing power\n awesom built price rang 18k nvme ssd boot 2 secit doesnt feel like low pentium processor like regular i3 i5 hdd even slower pentium nvme ssd though i3 i5 process power\n Negative 44 awesome price range 18k nvme ssd boots sec low pentium processor regular i3 i5 hdd pentium nvme ssd i3 i5 processing power
442 A value for money laptop with new pentium gold processor and SSD.\n valu money laptop new pentium gold processor ssd\n Neutral 12 value money laptop new pentium gold processor ssd
443 Firstly this laptop is very light.The processor is very fast with SSD.I installed Ubuntu on it but the wifi drivers are not available on Ubuntu.Only downside is display which I can't complain at this price.Build quality is sub optimal.Overall fantastic deal.\n firstli laptop lightth processor fast ssdi instal ubuntu wifi driver avail ubuntuonli downsid display cant complain pricebuild qualiti sub optimaloveral fantast deal\n Positive 41 laptop light.the processor fast ssd.i ubuntu wifi drivers available ubuntu.only downside display price.build quality sub optimal.overall fantastic deal
444 Just Amazing, I bought in prime day sale at 18k, i am first time user, purchased for normal office work, after three days use, it's superb in all aspects. Thank you Amazon.\n amaz bought prime day sale 18k first time user purchas normal offic work three day use superb aspect thank amazon\n Positive 32 amazing prime day sale 18k first time user normal office work days superb aspects amazon
445 The laptop is basic grade with basic processor and build quality also very basic. It is worth the money if priced around 19000 at which amazon has been selling it for quite sometime now. Recently they have increased the pricing to as high as 28000 which is definitely not worth the price. Check out other ecommerce websites as same model with AMD processor is still sold at prices nearing 19000.\n laptop basic grade basic processor build qualiti also basic worth money price around 19000 amazon sell quit sometim recent increas price high 28000 definit worth price check ecommerc websit model amd processor still sold price near 19000\n Positive 70 laptop basic grade basic processor build quality basic worth money amazon pricing high worth price other ecommerce websites same model amd processor prices
446 I bought it with a price of rs 19000. With this price range, I would say this is the best laptop. Don't search the Internet, go for it. It's an excellent choice. The laptop is fast and comes with an installed windows Os. What more can I ask for? Best buy so far\n bought price rs 19000 price rang would say best laptop dont search internet go excel choic laptop fast come instal window os ask best buy far\n Positive 53 price rs price range best laptop internet excellent choice laptop windows os more best
447 This is a very good product by hp.Latest CPU,OS,SSD,DDR4 Makes this Device very fast.You can buy this Note Book for your Secondary Work Device for Heavy User, Primary Device for Students,Normal Business persons..\n good product hplatest cpuosssdddr4 make devic fastyou buy note book secondari work devic heavi user primari devic studentsnorm busi persons\n Positive 34 good product hp.latest cpu os ssd ddr4 device note book secondary work device heavy user primary device students normal business persons
448 Not at all a good one. Poor speed. Keys are hard. Not come with pre-installed MS Office, for which you have to spend extra. Overall my old Dell was better than this one. Wrongly exchanged hoping for a better performance. THE REVIEWS ARE ALSO APPEARS TO BE FABRICATED.\n good one poor speed key hard come preinstal ms offic spend extra overal old dell better one wrongli exchang hope better perform review also appear fabricated\n Positive 53 good poor speed keys hard pre ms office extra overall old dell better one better performance reviews
449 Looks Wise: GoodFor carrying: Very Easy - just like 10 inch TabletBattery Back up 5 Hr's with Moderate UseSome Plastic Niggles were present - No need to worryLaptop charger was heavier than laptopBootup Time 3 sec with Win 10Memory added extra 128 GB Micro SD\n look wise goodfor carri easi like 10 inch tabletbatteri back 5 hr moder usesom plastic niggl present need worrylaptop charger heavier laptopbootup time 3 sec win 10memori ad extra 128 gb micro sd\n Positive 46 wise goodfor inch tabletbattery hr moderate usesome plastic niggles present need worrylaptop charger heavier laptopbootup time sec win extra gb micro sd
450 This laptop is very slow. It's been two months, I have been using this laptop. And it's slow. It had been slow since the day I got this delivered.\n laptop slow two month use laptop slow slow sinc day got delivered\n Neutral 29 laptop slow months laptop slow slow day
451 Got a laptop for office and its not even switching on and amazon service is going down so had to call twice to het it inspected and then return.\n got laptop offic even switch amazon servic go call twice het inspect return\n Positive 29 laptop office amazon service
452 Nice laptop.. Compact one.. Excellent performance. High battery backup giving feeding after using one month.\n nice laptop compact one excel perform high batteri backup give feed use one month\n Positive 18 nice laptop compact excellent performance high battery backup giving feeding month
453 Excellent product. I never imagined i would get such a product in Rs 19,900/- only. Thanks to great indian festival sale. The only drawback i find is lack of CD drive in it. But this deficiency can be made up by purchasing external CD drive.\n excel product never imagin would get product rs 19900 thank great indian festiv sale drawback find lack cd drive defici made purchas extern cd drive\n Positive 45 excellent product product rs 19,900/- thanks great indian festival sale only drawback lack cd deficiency external cd drive
454 Handy. light weight makes this lap adorable; good for presentations and people on the move. Overall good experience.\n handi light weight make lap ador good present peopl move overal good experience\n Positive 18 handy light weight lap adorable good presentations people move overall good experience
455 Go for it without any doubt . Its light weight laptop with long battery life. 256gb ssd boost the system speed. Highly recommended.\n go without doubt light weight laptop long batteri life 256gb ssd boost system speed highli recommended\n Positive 24 doubt light weight laptop long battery life gb ssd system speed
456 It has met my expectations, in terms of speed, form factor, display quality. I am enjoying it.I have only one small issue - the power button is too small and one is not sure if it has been pressed properly to power on. The Led indication light is on the side, and one has to bend sideways to check if it has been powered on.\n met expect term speed form factor display qualiti enjoy iti one small issu power button small one sure press properli power led indic light side one bend sideway check power on\n Positive 66 expectations terms speed form factor display quality it.i small issue power button small one sure power led indication light side one sideways
457 Fully satisfied . Excellent product as described. Speed is very good. Look wise elegant. Light weight and very convinient to handle. Useing for the last one week.Overall an excellent product.\n fulli satisfi excel product describ speed good look wise eleg light weight convini handl use last one weekoveral excel product\n Positive 30 satisfied excellent product speed good wise elegant light weight convinient last week.overall excellent product
458 A really really good deal.Super boost to productivity.Instant app launches and boot ups.The NVME will never let you down.Massive bummer for gaming though. So, dont buy if that's what you have in mind.But, this is one of the best decisions I've ever made.\n realli realli good dealsup boost productivityinst app launch boot upsth nvme never let downmass bummer game though dont buy that mindbut one best decis ive ever made\n Positive 43 good deal.super boost productivity.instant app launches boot nvme down.massive bummer gaming mind.but best decisions
459 Its one of the piece students .looks nice. Decent config and low price\n one piec student look nice decent config low price\n Positive 13 piece students nice decent config low price
460 The laptop is good but it failed to boot up after 10 days of use. The HP is now proceeding to replace the motherboard.I don't know what will happen after warranty period is over.\n laptop good fail boot 10 day use hp proceed replac motherboardi dont know happen warranti period over\n Negative 34 laptop good days use hp motherboard.i warranty period
461 With a fast booting, crisp processing due to 256 GB SSD, the device is value for money at this price! Far more responsive than a i3, 1TB specification device...Overall built is fine, light and display too is good.\n fast boot crisp process due 256 gb ssd devic valu money price far respons i3 1tb specif deviceoveral built fine light display good\n Positive 38 fast booting crisp processing gb ssd device value money price responsive i3 tb specification device fine light good
462 Hdd is very slow while having worked on ssd it is not good experience\n hdd slow work ssd good experience\n Positive 14 hdd slow ssd good experience
463 I bought it two days ago... Happy with the decision.... It's worth buying it for daily domestic usage.... Value for money\n bought two day ago happi decis worth buy daili domest usag valu money\n Positive 21 days happy decision worth daily domestic usage value money
464 I just love it. Have it at 19.5 k in offer.\n love 195 k offer\n Positive 11 k offer
465 System is slow .. i have updated all the drives. Reboot time is large.. Rest all is best\n system slow updat drive reboot time larg rest best\n Positive 18 system slow drives reboot time large rest best
466 Its a decent product for generic purposes. Though, the SSD's quick responses are very evident. Apart from games and other heavy graphics works, it serves pretty much everything else.\n decent product gener purpos though ssd quick respons evid apart game heavi graphic work serv pretti much everyth else\n Neutral 29 decent product generic purposes ssd quick responses evident games other heavy graphics works
467 Extremely fast booting time once you have gone through the setting up process.\n extrem fast boot time gone set process\n Neutral 13 fast booting time setting process
468 Very fast entry segment laptop from hp. Ssd makes the difference in boot time and processor too is latest which is add on.Good for light work, office work. Windows 10 too is a bliss. Go for it.\n fast entri segment laptop hp ssd make differ boot time processor latest add ongood light work offic work window 10 bliss go it\n Positive 37 fast entry segment laptop hp ssd difference boot time processor latest on.good light work office work windows bliss
469 Good battery life, best of all is the price with which it performs, not much of any difference as compared to price range of 30+ k laptops. Blindly go for it...\n good batteri life best price perform much differ compar price rang 30 k laptop blindli go it\n Positive 31 good battery life best price much difference price range k laptops
470 Display : 4/5Build Quality : 4/5Performance : 3.5/5Battery Life : 4/5Sound Quality : Very good 4.5/5Fast Booting Time due to SSD🙂😎Very Good option below 20k!\n display 45build qualiti 45perform 355batteri life 45sound qualiti good 455fast boot time due ssd🙂😎veri good option 20k\n Positive 25 display quality life quality good 4.5/5fast booting time good option
471 Nice product, got it for 20k.every thing is good except the display quality.Performance is amazing, sound is amazing, graphics is good,battery backup is good,ultra portable, windows 10\n nice product got 20keveri thing good except display qualityperform amaz sound amaz graphic goodbatteri backup goodultra portabl window 10\n Positive 27 nice product thing good display quality.performance amazing sound amazing graphics good battery backup good ultra portable windows
472 For business purpose its amazing\n busi purpos amazing\n Positive 5 business purpose amazing
473 I bought this laptop below 18K during Amazon sale. Very fast startup because of SSD. Light weight and value for money. Good for browsing and personal use. I recommend this product at this price.\n bought laptop 18k amazon sale fast startup ssd light weight valu money good brows person use recommend product price\n Positive 34 laptop amazon sale startup ssd light weight value money good browsing personal use product price
474 Its Good. Lacks Ruggedness.\n good lack ruggedness\n Positive 4 good
475 Plzz believe me ,i m a genuine buyer. this laptop is must to buy bcoz of following reasons what a speed 7 sec to bootup n 2 sec to shut down n many more\n plzz believ genuin buyer laptop must buy bcoz follow reason speed 7 sec bootup n 2 sec shut n mani more\n Neutral 34 plzz genuine buyer laptop bcoz reasons speed sec n sec more
476 G8 price and good performance, it works faster than the i3 laptop I was handling earlier.\n g8 price good perform work faster i3 laptop handl earlier\n Positive 16 g8 price good performance i3 laptop
477 All I can see is positive but since we always ask for more then why not to have it with backlit keyboard😬\n see posit sinc alway ask backlit keyboard😬\n Neutral 22 positive more backlit keyboard
478 Amazing laptop which is super sexy n wow in performance SSD just loved it makes your performance supersonic\n amaz laptop super sexi n wow perform ssd love make perform supersonic\n Positive 18 amazing laptop sexy n performance ssd performance supersonic
479 Lappy is good but a little bit overpriced. Works fine for day to day normal work.\n lappi good littl bit overpr work fine day day normal work\n Positive 16 lappy good little bit overpriced day day normal work
480 Better then expected. Fast and happy with the purchase.\n better expect fast happi purchase\n Positive 9 fast happy purchase
481 There's a lot of problem with software .it's very slow , shut downs automatically, files get currupt. Requests to look into matter resolve issue .purchased just 2 weeks ago\n there lot problem softwar slow shut down automat file get currupt request look matter resolv issu purchas 2 week ago\n Negative 29 lot problem software slow downs files currupt requests matter resolve issue weeks
482 This is an amazing laptop.\n amaz laptop\n Neutral 5 amazing laptop
483 Don't buy this product. It is stucking and hanging even drives are installed. Don't go with this product\n dont buy product stuck hang even drive instal dont go product\n Positive 18 product drives product
484 Horizontal line is appearing on Lap Top screen. It seems the screen is defective. Please contact supplier and arrange for replacement of Lap Top immediately.\n horizont line appear lap top screen seem screen defect pleas contact supplier arrang replac lap top immediately\n Positive 27 horizontal line lap top screen screen defective contact supplier arrange replacement lap top
485 It's great, the SSD makes it superfast. Display was not an issue, great for simple home/work use.Lighter than expected.\n great ssd make superfast display issu great simpl homework uselight expected\n Positive 19 great ssd superfast display issue great simple home work use.lighter
486 Value for money. Good product for the price.\n valu money good product price\n Positive 8 value money good product price
487 Please note that Microsoft is not installed. rather than that all good.\n pleas note microsoft instal rather good\n Positive 12 microsoft good
488 Useless laptop specially display is very poor and can read any letters if article publish on websites , pls advice if I can upgrade the one\n useless laptop special display poor read letter articl publish websit pl advic upgrad one\n Negative 26 useless laptop display poor letters article websites advice one
489 Good laptop but not for gaming.\n good laptop gaming\n Positive 6 good laptop gaming
490 Lovely laptop with good specifications for the price. Especially for those who have basic computing needs. Got it on discount for less than 20000/-\n love laptop good specif price especi basic comput need got discount less 20000\n Positive 24 lovely laptop good specifications price basic computing needs discount less
491 HP laptop are always good.\n hp laptop alway good\n Positive 5 hp laptop good
492 Keep on crashing at an average twice a day. WiFi keep on disconnecting maybe due to the low strength adapter.\n keep crash averag twice day wifi keep disconnect mayb due low strength adapter\n Negative 20 average day low strength adapter
493 I got this product under 20K thanks to Amazon. Handy and compact, 256 GB SSD makes it fast, good battery life. A great buy if you are a normal user.\n got product 20k thank amazon handi compact 256 gb ssd make fast good batteri life great buy normal user\n Positive 30 product 20k thanks amazon handy compact gb ssd fast good battery life great buy normal user
494 Hp Laptop 14q Cs0018tu 4gb ddr4 Ram 256gb ssd drive past open windows 10 Home Chocklate Kyeboard Good Experience 👌\n hp laptop 14q cs0018tu 4gb ddr4 ram 256gb ssd drive past open window 10 home chocklat kyeboard good experi 👌\n Positive 20 hp laptop 14q cs0018tu gb ddr4 ram gb ssd drive open windows home chocklate kyeboard good experience
495 Good product but gets scratches very easily on the surface.\n good product get scratch easili surface\n Positive 10 good product scratches surface
496 It is a fantastic product in this range, I never seen that type of excellent work of laptop. Go for it, it never disappoint you.\n fantast product rang never seen type excel work laptop go never disappoint you\n Negative 25 fantastic product range type excellent work laptop
497 Not working well.The screen keeps shutting down by itself randomly.Takes forever for it to turn on and switch off\n work wellth screen keep shut randomlytak forev turn switch off\n Neutral 19 well.the screen
498 Display is not so good. BOOT TIME IS AWSOME. Wrong specification described about usb 3.0 port. ALL PORTS ARE USB 2.0\n display good boot time awsom wrong specif describ usb 30 port port usb 20\n Negative 21 display good boot time awsome wrong specification usb port ports usb
499 This price good.SSD is amazing fast\n price goodssd amaz fast\n Neutral 6 price good.ssd amazing
500 GOOD PERFORMANCE.USING SINCE ONE week NOW..FAST DELIVERY AND FRESH PRODUCT...\n good performanceus sinc one week nowfast deliveri fresh product\n Positive 10 good performance.using week fast delivery fresh product
501 A superb note book with good looks, light weight and satisfactory performance itself..I think the best thing u can get under 20k.\n superb note book good look light weight satisfactori perform itselfi think best thing u get 20k\n Positive 22 superb note book good looks light weight satisfactory performance best thing 20k
502 Space is limited.\n space limited\n Negative 3 space
503 Very fast and smooth for day to day task\n fast smooth day day task\n Neutral 9 smooth day day task
504 Good laptop for college students.SSD is superfast\n good laptop colleg studentsssd superfast\n Positive 7 good laptop college students.ssd superfast
505 Thin laptop till now using it for professional use. Smooth and fine\n thin laptop till use profession use smooth fine\n Positive 12 thin laptop professional use smooth fine
506 Good laptop with decent performance and highly compatible .no issues with the laptop after 3 days of usage. Its a good go for students.\n good laptop decent perform highli compat issu laptop 3 day usag good go students\n Positive 24 good laptop decent performance compatible issues laptop days usage good go students
507 Reasonable product. Suitable for home-users.\n reason product suitabl homeusers\n Neutral 5 reasonable product suitable home users
508 Less storage\n less storage\n Neutral 2 less storage
509 Best laptop in this range and good featuresSo I recommend to buy this laptop in this range\n best laptop rang good featuresso recommend buy laptop range\n Positive 17 best laptop range good featuresso laptop range
510 It's good for daily use, light weight, average processing speed. So, It's okay to purchase it.\n good daili use light weight averag process speed okay purchas it\n Positive 16 good daily use light weight average processing speed okay
511 Worst product. There are multiple technical flaws seen. Not recommend\n worst product multipl technic flaw seen recommend\n Negative 12 worst product multiple technical flaws
512 Just amazing laptop by hpIts very powerful with 256 GB ssdBoot in only 8 secBlindly go for it\n amaz laptop hpit power 256 gb ssdboot 8 secblindli go it\n Neutral 18 amazing laptop hpits powerful gb ssdboot
513 Display Average.., Laptop..Case Average.. Quality...,\n display averag laptopcas averag quality\n Neutral 5 display average laptop case average quality
514 So good\n good\n Positive 2 good
515 The laptop delivered is not the same as shown in Amazon website. Photo attached.\n laptop deliv shown amazon websit photo attached\n Positive 14 laptop same amazon website photo
516 screen is not good as expected but over it is a very Good product in this price range\n screen good expect good product price range\n Positive 18 screen good good product price range
517 Value for money...due to solid state hard drive..it's delivering even better than i3\n valu moneydu solid state hard driveit deliv even better i3\n Positive 13 value money due solid state hard drive i3
518 Lightweight, excellent screen quality, good computing power. Everything I need in a personal laptop.\n lightweight excel screen qualiti good comput power everyth need person laptop\n Positive 14 lightweight excellent screen quality good computing power personal laptop
519 Waste laptop foreverPerformance is very slowHanging problemAutomatically poweroff\n wast laptop foreverperform slowhang problemautomat poweroff\n Neutral 8 waste laptop foreverperformance poweroff
520 Awesome..... Ditto as were specified\n awesom ditto specified\n Neutral 5 awesome ditto
521 booting is very fast.I am very happy with the laptop. Is a very good buy for anyone for home use\n boot fasti happi laptop good buy anyon home use\n Positive 21 booting fast.i happy laptop good buy home use
522 Best for small budget\n best small budget\n Positive 4 best small budget
523 It’s beast for browsing and light office work SSD works like charm boot time 2-3 sec\n it’ beast brows light offic work ssd work like charm boot time 23 sec\n Positive 16 beast browsing light office work ssd charm boot time sec
524 The screen quality is really good, amazing battery life and the weight is just about right\n screen qualiti realli good amaz batteri life weight right\n Positive 16 screen quality good amazing battery life weight right
525 MS office is 365 we can uninstall it download from Google Chrome the normal version.\n ms offic 365 uninstal download googl chrome normal version\n Neutral 15 ms office download google chrome normal version
526 Average\n average\n Neutral 1 average
527 Problematic. After 2 to 3 weeks of use, the screen is showing a vertical line.\n problemat 2 3 week use screen show vertic line\n Neutral 16 problematic weeks use screen vertical line
528 Light weight and value for money\n light weight valu money\n Neutral 6 light weight value money
529 Good laptop for home, school / college and small business use.\n good laptop home school colleg small busi use\n Positive 11 good laptop home school college small business use
530 Not good. Cheeting customers in the name of ms office.\n good cheet custom name ms office\n Positive 10 good customers name ms office
531 Great buy for anyone looking for a lightweight laptop for college/ university\n great buy anyon look lightweight laptop colleg university\n Positive 12 great lightweight laptop college/ university
532 Remember while lifting it with hand, hard drive may gone..😆\n rememb lift hand hard drive may gone😆\n Positive 10 hand hard drive
533 Totally good as per Price\n total good per price\n Positive 5 good price
534 It's very nice... 😀\n nice 😀\n Positive 4 nice
535 Its ok normal browisne good\n ok normal browisn good\n Positive 5 ok normal browisne good
536 It’s an average laptop for average price for average use\n it’ averag laptop averag price averag use\n Neutral 10 average laptop average price average use
537 Screen quality\n screen quality\n Neutral 2 screen quality
538 Worth buying.\n worth buying\n Positive 2 worth buying
539 Great.\n great\n Positive 1 great
540 It's initial rating will review in detail later.\n initi rate review detail later\n Neutral 8 initial rating detail
541 Good Performance\n good performance\n Positive 2 good performance
542 Laptop is great.\n laptop great\n Positive 3 laptop great
543 Very useful laptop for students\n use laptop students\n Neutral 5 useful laptop students
544 Light weight, nice screen LED, good to carry..\n light weight nice screen led good carry\n Positive 8 light weight nice screen good
545 Better than expected\n better expected\n Positive 3 better
546 Best laptop for price range\n best laptop price range\n Positive 5 best laptop price range
547 The product is for basic use only.\n product basic use only\n Neutral 7 product basic use
548 Mind-blowing purchase 👌👌\n mindblow purchas 👌👌\n Neutral 3 mind purchase
549 Nyc\n nyc\n Neutral 1 nyc
550 Excellent product. Value for money.\n excel product valu money\n Positive 5 excellent product value money
551 Thought would be a great deal, but was not\n thought would great deal not\n Positive 9 thought great deal
552 Product OK Amazon people are worst\n product ok amazon peopl worst\n Negative 6 product ok amazon people worst
553 Good product in this range\n good product range\n Positive 5 good product range
554 Yes\n yes\n Positive 1
555 It will do most of the daily tasks easily.\n daili task easily\n Positive 9 most daily tasks
556 Size issue\n size issue\n Neutral 2 size issue
557 nice laptop...\n nice laptop\n Positive 2 nice laptop
558 Best configurations for personal use..\n best configur person use\n Positive 5 best configurations personal use
559 Very good 👌 quality\n good 👌 quality\n Positive 4 good quality
560 Good product......\n good product\n Positive 2 good product
561 Ok product\n ok product\n Positive 2 ok product
562 No doubts, Its amazing Products.\n doubt amaz products\n Negative 5 doubts amazing products
563 Waste\n waste\n Negative 1 waste
564 It's worth for money\n worth money\n Positive 4 worth money
565 Amazing product RS 30000\n amaz product rs 30000\n Neutral 4 amazing product rs
566 Best in the segment\n best segment\n Positive 4 best segment
567 this is best budget laptop\n best budget laptop\n Positive 5 best budget laptop
568 Value for Money good speed\n valu money good speed\n Positive 5 value money good speed
569 Its running smooth\n run smooth\n Neutral 3 smooth
570 I like it\n like it\n Positive 3
571 VALUE FOR MONEY\n valu money\n Neutral 3 value money
572 Great product\n great product\n Positive 2 great product
573 Good quality products\n good qualiti products\n Positive 3 good quality products
574 Looks good\n look good\n Positive 2 good
575 Slow Start\n slow start\n Neutral 2 slow start
576 Very good laptop\n good laptop\n Positive 3 good laptop
577 Good one\n good one\n Positive 2 good
578 Ok report\n ok report\n Positive 2 report
579 Wow. what a product for the price. I can't believe that it comes with an SSD for this price. It is really good. Defintely recommend someone to buy it.\n wow product price cant believ come ssd price realli good defint recommend someon buy it\n Positive 29 product price ssd price good
580 Product achieved my expectations and highly recommended at this price point\n product achiev expect highli recommend price point\n Positive 11 product expectations price point
581 Good product. Must go for it. Slim and sexy laptop. Easy to carry. Also the response is good. It takes 30-40s to boot which is not bad. Not for gaming.\n good product must go slim sexi laptop easi carri also respons good take 3040 boot bad gaming\n Positive 30 good product slim sexy laptop easy response good 40s boot bad gaming
582 This laptop was priced around 20000 and a lot of purchase happened around this price margin and all the positive reviews above are made during that period.And as an advantage of those positive reviews and increased demand the Amazon has increased the price margin above 25k which is not at all worthy for this product. This product is best on 20k and average on 22k margin and above 23k it's not recommended so go for some other product.\n laptop price around 20000 lot purchas happen around price margin posit review made periodand advantag posit review increas demand amazon increas price margin 25k worthi product product best 20k averag 22k margin 23k recommend go product\n Positive 78 laptop lot purchase price margin positive reviews advantage positive reviews demand amazon price margin worthy product product best average margin other product
583 The MS office is not working asking for product key for activation. Although the model comes with pre-loadedoffice 10. Pl provide product key .outlook is not working with pop up message to activate.\n ms offic work ask product key activ although model come preloadedoffic 10 pl provid product key outlook work pop messag activate\n Neutral 35 ms office product key activation model pre - loadedoffice pl product key pop message
584 I had great hopes from this laptop. And I really needed it to work as expected, as a laptop is crucial for my business. But it stopped working within 4 days of receiving and now I'm stuck, for god knows how long.I hope it gets more negative ratings to show everyone what it truly is....garbage.Bottomline: Avoid buying cheap laptops from Amazon.You get what you pay for!i want for replace i look 4/1TB but amazon sent the item 4/256GB only you know very well today 256GB not kch nhi hager muhje 4/1Tb mita h to m uske islye aur paise dene k lye ready huamazon HP ki market m value khrb kr rha h.so ilsye dear sir apko kch krna pdega nhi to ak time esa aayega jab HP koi nhi lena kyuki m phle bhi HP tha mere perilsye mne HP ko liyabut amazon esa nhi chahata ilsye apko sochna pdega.\n great hope laptop realli need work expect laptop crucial busi stop work within 4 day receiv im stuck god know longi hope get neg rate show everyon truli isgarbagebottomlin avoid buy cheap laptop amazony get pay fori want replac look 41tb amazon sent item 4256gb know well today 256gb kch nhi hager muhj 41tb mita h usk isly aur pais dene k lye readi huamazon hp ki market valu khrb kr rha hso ilsy dear sir apko kch krna pdega nhi ak time esa aayega jab hp koi nhi lena kyuki phle bhi hp tha mere perilsy mne hp ko liyabut amazon esa nhi chahata ilsy apko sochna pdega\n Positive 151 great hopes laptop laptop crucial business days receiving god long.i negative ratings garbage.bottomline cheap laptops for!i replace tb amazon item today kch nhi hager muhje tb mita h m uske islye aur paise dene k lye ready huamazon hp ki market m value khrb kr rha h.so ilsye dear sir kch krna pdega nhi ak time esa aayega jab hp koi nhi lena kyuki m phle bhi hp tha mere perilsye mne hp ko liyabut amazon esa nhi chahata ilsye sochna pdega
585 I bought this laptop at 20k+10% SBI debit card discount....My varient is 4gb ram,256gb ssd. Boot time is just amazing.It boots in 3-5 sec...After using 1week I don't have any problems like hang and all that stuffs.Every thing is good except screen,you can't use it in sunlight...but at this price it is good choice otherwise everything is perfect...🙂\n bought laptop 20k10 sbi debit card discountmi varient 4gb ram256gb ssd boot time amazingit boot 35 secaft use 1week dont problem like hang stuffseveri thing good except screenyou cant use sunlightbut price good choic otherwis everyth perfect🙂\n Positive 58 laptop % sbi debit card discount varient gb ram,256 gb ssd boot time boots sec problems stuffs.every thing good screen sunlight price good choice perfect
586 Nice product. Worth purchase at this cost. Would have been better if MS Office (permanent version) could have been part of the OS.Battery life is also OK, Screen resolution is nice with light weight one can enjoy the working. Dont know how the gamming experience is but for normal office / study purpose i can recommend the product.Fully satisfied with the product.\n nice product worth purchas cost would better ms offic perman version could part osbatteri life also ok screen resolut nice light weight one enjoy work dont know gam experi normal offic studi purpos recommend product satisfi product\n Positive 62 nice product worth purchase cost better ms office permanent version part os.battery life ok screen resolution nice light weight working gamming experience normal office study purpose satisfied product
587 I ordered this laptop on May 11 (Saturday) and the product reached to me early morning on May 13 (Monday), so kudos to Amazon's delivery! I was worried about any damages or scratches, but the laptop was well packed.Coming to the laptop, I'm writing this review after using it extensively for 2 weeks. My review is divided into the pros and cons to cover all the features of this laptop:Pros:1) The laptop is light as a feather and easy to carry. The body is slim and the metallic look gives it a premium feel.2) The boot time is extremely fast. It takes around 4-5 seconds for the Homescreen/Password screen to pop-up.3) The 256 GB SSD drive. It was primarily the reason why I chose this laptop.4) The touch is brilliant and extremely responsive. The inking pen has a quick response as well. If you're a designer, the inking pen can act as an added benefit, however, for me, it does not have any other utility than to play around with Paint 3D.5) Multifunctioning is smooth and the laptop doesn't lag or slow down when switching from one application to another.6) The 2-1 feature is also good and you can use it as a tablet easily.7) Windows 10 interface is extremely easy to use and you can download some Android games and apps as well from the apps store.8) You get 1 USB 3.1 Type-C, 2 USB 3.1, 1 HDMI and 1 SD card reader on the sides, so connectivity is easy.9) The Battery life is good too, but it really depends upon your usage. My laptop was at 92% battery and I binge-watched a show for 6 hours without the need to plug in the charger.10) The keyboard is also well-spaced and you can get used to the spacing in a short while. My main work involves typing (content writing) and I didn't feel any change in my typing speed.Cons:1) The screen- The screen is only HD and not FHD, so if you like watching 1080p videos, you won't get that full HD experience.2) There is no IPS or In-Plane Switching feature. The screen quality shifts with the slightest change, so you need to keep the screen in one angle to enjoy your video content. Even the slightest shift to the angel can lead to a change in contrast and black levels. So, not a comfortable experience overall.3) The volume is fine. It's not loud enough to play audios and videos for a large room full of people. You'll need a good speaker for your entertainment.4) The laptop heats up a lot when plugged into charging to a really uncomfortable level. You can't use the laptop on your lap while it's charging, especially in summers. I had to put the laptop in front of an Air Conditioner to cool it down a little.5) Though the laptop is sturdy, I'd suggest you avoid using the 2-1 feature multiple times at once. (just saying)Overall, there are more pros than cons of this laptop. The biggest minus point for me is the screen. I focused on the 256 GB SSD and didn't pay heed to the screen resolution and IPS. But, It's a good buy and I'm using it for both entertainment and work without any major concerns.This is a really good laptop if you wish to buy a 2-in-1 laptop and have a budget of 40-45k, but you can buy an FHD display with the 14-dh0101TU model that has the same specs as this one. I don't understand why the 101TU model wasn't launched with this and launched only a few days after it!\n order laptop may 11 saturday product reach earli morn may 13 monday kudo amazon deliveri worri damag scratch laptop well packedcom laptop im write review use extens 2 week review divid pro con cover featur laptoppros1 laptop light feather easi carri bodi slim metal look give premium feel2 boot time extrem fast take around 45 second homescreenpassword screen popup3 256 gb ssd drive primarili reason chose laptop4 touch brilliant extrem respons ink pen quick respons well your design ink pen act ad benefit howev util play around paint 3d5 multifunct smooth laptop doesnt lag slow switch one applic another6 21 featur also good use tablet easily7 window 10 interfac extrem easi use download android game app well app store8 get 1 usb 31 typec 2 usb 31 1 hdmi 1 sd card reader side connect easy9 batteri life good realli depend upon usag laptop 92 batteri bingewatch show 6 hour without need plug charger10 keyboard also wellspac get use space short main work involv type content write didnt feel chang type speedcons1 screen screen hd fhd like watch 1080p video wont get full hd experience2 ip inplan switch featur screen qualiti shift slightest chang need keep screen one angl enjoy video content even slightest shift angel lead chang contrast black level comfort experi overall3 volum fine loud enough play audio video larg room full peopl youll need good speaker entertainment4 laptop heat lot plug charg realli uncomfort level cant use laptop lap charg especi summer put laptop front air condition cool little5 though laptop sturdi id suggest avoid use 21 featur multipl time sayingoveral pro con laptop biggest minu point screen focus 256 gb ssd didnt pay heed screen resolut ip good buy im use entertain work without major concernsthi realli good laptop wish buy 2in1 laptop budget 4045k buy fhd display 14dh0101tu model spec one dont understand 101tu model wasnt launch launch day it\n Positive 602 laptop may saturday product early morning may monday kudos amazon delivery worried damages scratches laptop laptop review weeks review pros cons features laptop laptop light feather easy body slim metallic look premium feel.2 boot time fast seconds homescreen password screen up.3 gb ssd drive reason laptop.4 touch brilliant responsive pen quick response designer pen benefit other utility paint multifunctioning smooth laptop application feature good tablet easily.7 windows interface easy android games apps apps store.8 usb type c usb hdmi sd card reader sides connectivity easy.9 battery life good usage laptop % battery show hours need charger.10 keyboard spacing short while main work content writing change typing speed.cons:1 screen- screen fhd 1080p videos full hd experience.2 ips plane switching feature screen quality shifts slightest change screen angle video content slightest shift angel change contrast black levels comfortable experience volume fine loud audios videos large room full people good speaker entertainment.4 laptop lot uncomfortable level laptop lap summers laptop front air conditioner little.5 laptop sturdy feature multiple times saying)overall more pros cons laptop biggest minus point screen gb ssd heed screen resolution good buy entertainment work major concerns.this good laptop 2-in-1 laptop budget 45k fhd display model same specs one 101tu model few days
588 I bought it for my sister, she is a freelancer and I must appreciate the look first. I have used it for few hours and find so much comfortable in using, writing and overall accessibility of it. The built, texture and look of the laptop is quite premium. The touch screen is quick. It turns into a tablet very much quick and keyboards get disabled, so you don;t have to worry about keyboards getting pressed mistakenly while using it as a tablet.It is FHD, the visuals are good. The speed so far I have pretty much enjoyed.I recommend this laptop for students, freelancers, artists, writers and also good for traveling.It could be bit more lightweight but then, the cost must be high, so I give it that.the pen works cool. I am going to try more of it over the months, then see how it goes further.Overall, It is a must buy considering the price, brand, specifications, value for money and overall what you are getting here. If you want more specifications, you can go for i5 version or 8GB RAM version, but this model overall is cool\n bought sister freelanc must appreci look first use hour find much comfort use write overal access built textur look laptop quit premium touch screen quick turn tablet much quick keyboard get disabl dont worri keyboard get press mistakenli use tabletit fhd visual good speed far pretti much enjoyedi recommend laptop student freelanc artist writer also good travelingit could bit lightweight cost must high give thatth pen work cool go tri month see goe furtheroveral must buy consid price brand specif valu money overal get want specif go i5 version 8gb ram version model overal cool\n Positive 188 sister freelancer look few hours comfortable writing overall accessibility texture look laptop premium touch screen quick tablet quick keyboards disabled don;t keyboards tablet.it fhd visuals good speed enjoyed.i laptop students freelancers artists writers good traveling.it lightweight cost high pen cool more months further.overall price brand specifications value money more specifications i5 version gb ram version model cool
589 This is a preliminary review as I have just received the laptop and played on it for a day. It looks beautiful and slim. 2 in 1 looks very good, as a tablet with inking technology, it is amazing. Pen is good, it will be better to add a screen guard as we need to force the touch of the pen to the screen. This is my first i3 as I have always used i5 or i7, speed seems to be fine but have to see after loading bunch of software. SSD hard disk will be definitely a boost, planning to throw another 4gb ram stick to make it 8gb to compensate i3 performance. So far so good, will update later.First edit:It does not have backlit keyboard and modifying hardware like adding RAM or adding bigger SSD is very difficult in this model, just found all X360 hp laptops are compact and tightly packed like mobile phones. Battery is placed inside and could not be replaced easily like other or older hp laptops. This is definitely an inconvenience for people who are computer savvy and keep updating their laptops.\n preliminari review receiv laptop play day look beauti slim 2 1 look good tablet ink technolog amaz pen good better add screen guard need forc touch pen screen first i3 alway use i5 i7 speed seem fine see load bunch softwar ssd hard disk definit boost plan throw anoth 4gb ram stick make 8gb compens i3 perform far good updat laterfirst editit backlit keyboard modifi hardwar like ad ram ad bigger ssd difficult model found x360 hp laptop compact tightli pack like mobil phone batteri place insid could replac easili like older hp laptop definit inconveni peopl comput savvi keep updat laptops\n Positive 189 preliminary review laptop day beautiful slim good tablet technology amazing pen good better screen guard touch pen screen first i3 i5 i7 speed fine bunch software ssd hard disk boost gb ram stick i3 performance good edit keyboard hardware ram bigger ssd difficult model x360 hp laptops compact mobile phones battery other older hp laptops inconvenience people computer savvy laptops
590 I think, It's a great deal and works like a charm. I was skeptical before buying this but overall it is a good buy if your budget is between 40k-50k as it comes with corei3 8th Gen,MS Office, Windows 10,360 degree, Tablet and touch screen with pen.. so what else we need..I did not feel any slowness as well so far.. However this review is based on 3 days of use.. so wait and see if someone is writing after a month.. but we can buy it👍\n think great deal work like charm skeptic buy overal good buy budget 40k50k come corei3 8th genm offic window 10360 degre tablet touch screen pen els needi feel slow well far howev review base 3 day use wait see someon write month buy it👍\n Positive 87 great deal charm skeptical good buy budget 40k-50k corei3 8th gen ms office windows degree tablet screen pen slowness review days use month
591 first thing first -performance of this machine is same as an i3 with ssd has to be -no complaints there. Its a Very good looking laptop. you will surely love it.But Biggest letdown is display. Let me tell you that if you are considering a laptop then look for full HD display.this one has HD display which provides so so images. The let down by display is visible all over.more to that the Glass on display is pathetic-as it reflects everything . It makes viewing so difficult that it keeps you annoyed all the time.i will update more as i get more of it.UPDATE:- i am using it now for a considerable time.My biggest complaint was display and let me admit honestly that i am now used to it. i do not find it that annoying. But yes, i would still suggest to go for FHD laptop with few bucks more.Actually HP should have given FHD at this price point.(i bought this at 43K).Touch screen is gd. i am not using the Stylus at all,i think this will be case with every other customers. (samsung Galaxy Note owners know it well).the stylus -its there , because its just there,actual use is minimal.). So while purchasing don't get distracted with HP pen. its not an advantage unless you really require it.\n first thing first perform machin i3 ssd complaint good look laptop sure love itbut biggest letdown display let tell consid laptop look full hd displaythi one hd display provid imag let display visibl overmor glass display pathetica reflect everyth make view difficult keep annoy timei updat get itupd use consider timemi biggest complaint display let admit honestli use find annoy ye would still suggest go fhd laptop buck moreactu hp given fhd price pointi bought 43ktouch screen gd use stylu alli think case everi custom samsung galaxi note owner know wellth stylu thereactu use minim purchas dont get distract hp pen advantag unless realli requir it\n Positive 221 first thing -performance machine same i3 ssd -no complaints good looking laptop biggest letdown display laptop full hd display.this hd display images let display visible over.more glass display pathetic difficult time.i more it.update:- considerable time.my biggest complaint display annoying fhd laptop few bucks hp fhd price point.(i screen gd stylus case other customers samsung galaxy note owners stylus actual use minimal hp pen advantage
592 I m very much satisfied with laptop...fine touch screen....stylus pen working excellent........keyboard very sleek......video quality up to the mark...works very well for writing taking notes.....browsing is very fast....got it for 40700 on prime day\n much satisfi laptopfin touch screenstylu pen work excellentkeyboard sleekvideo qualiti markwork well write take notesbrows fastgot 40700 prime day\n Positive 34 satisfied laptop fine touch screen stylus pen excellent keyboard sleek video quality mark notes browsing fast prime day
593 I got the laptop for 42990 which is a fair deal and as usual Amazon is awesome. First let me give you the cons.Cons:1) The speaker gets muffled when in tablet mode. So, better placement of speakers would have been nice.2) Upgrading the ram by yourself will void the warranty.3) The pen uses AAAA batteries which are ridiculously expensive and only come in 2 packs. That means by the time you exhaust one battery, the second will expire.4) For an i3, the laptop heats up fairly quickly and the fan stays on the whole time.5) The type c port does not support charging which is a bummer because it makes using a power bank unlikely.6) the viewing angles could have been better.Now the pros:1) The touch screen is awesome.2) Best use case is for studying and MS Office work.3) The latency of the pen is very less almost on par with the Apple pencil.4) The track pad uses windows precision drivers.5) Speakers are good but only in laptop mode.6) MS office is inlclude.Overall worth it.\n got laptop 42990 fair deal usual amazon awesom first let give conscons1 speaker get muffl tablet mode better placement speaker would nice2 upgrad ram void warranty3 pen use aaaa batteri ridicul expens come 2 pack mean time exhaust one batteri second expire4 i3 laptop heat fairli quickli fan stay whole time5 type c port support charg bummer make use power bank unlikely6 view angl could betternow pros1 touch screen awesome2 best use case studi ms offic work3 latenc pen less almost par appl pencil4 track pad use window precis drivers5 speaker good laptop mode6 ms offic inlcludeoveral worth it\n Positive 175 laptop fair deal usual amazon awesome cons.cons:1 speaker tablet mode better placement speakers nice.2 ram warranty.3 pen aaaa batteries expensive packs time battery second i3 laptop fan whole time.5 type c port bummer power bank unlikely.6 angles pros:1 touch screen awesome.2 best use case ms office work.3 latency pen par apple pencil.4 track pad windows precision drivers.5 speakers good laptop mode.6 ms office inlclude.overall worth
594 Initially I had an issue with activation of Office. Very pleased with feedback provided on my review. Was able to activate MS Office. It does come with MS installed and usable. Hence changed the rating from 1 star to 5 stars. THANK YOU VERY MUCH.The unit is very lightweight. I was looking for a reasonably priced 2 in 1. Overall a very good value for money. The 4 GB of RAM seems a bit insufficient. Else, it serves my purpose of using the system mainly for documentation, spreadsheets and presentations. Yet to try out the pen..EARLIER INITIAL REVIEW.... Changed as above!!!By reading product details we get the impression that MS Office comes a part of the purchase. This representation is completely misleading. However, it is only that Office is installed, we need to purchase and activate. The product details etc. are to be changed to clearly indicate this.Note: We just got the delivery last evening. The review will be changed if in case we find the activation key or if the seller provides the same.\n initi issu activ offic pleas feedback provid review abl activ ms offic come ms instal usabl henc chang rate 1 star 5 star thank muchth unit lightweight look reason price 2 1 overal good valu money 4 gb ram seem bit insuffici els serv purpos use system mainli document spreadsheet present yet tri penearli initi review chang abovebi read product detail get impress ms offic come part purchas represent complet mislead howev offic instal need purchas activ product detail etc chang clearli indic thisnot got deliveri last even review chang case find activ key seller provid same\n Positive 175 issue activation office pleased feedback review able ms office ms installed usable rating star stars unit lightweight good value money gb ram bit insufficient purpose system documentation spreadsheets presentations pen earlier initial review above!!!by product details impression ms office part purchase representation misleading office product details this.note delivery last evening review case activation key seller same
595 Works like a charm on the very first day, hopefully it stays so, amazing looking lappy at an affordable price, go for it and pray for the guys we’re in good mood while packing it, just like for mine\n work like charm first day hope stay amaz look lappi afford price go pray guy we’r good mood pack like mine\n Positive 39 charm first day amazing lappy affordable price guys good mood mine
596 With the best options for a student, with silent and fast flash-drive based operation, this is a great buy. We paired it with an external 21" HP monitor and USB Keyboard/Mouse set to make it an excellent desktop at home and portable laptop away from home.. Legal Windows-10 and MS-office-home-student version makes it even more of a value proposition..\n best option student silent fast flashdriv base oper great buy pair extern 21 hp monitor usb keyboardmous set make excel desktop home portabl laptop away home legal windows10 msofficehomestud version make even valu proposition\n Positive 59 best options student silent fast flash drive operation great buy external hp monitor usb keyboard mouse excellent desktop home portable laptop home legal windows-10 ms office home student version more value proposition
597 I purchased this laptop on 30 May and it was mentioned that its available with microsoft home in it but now outlook is showing unlicenced. What does it mean as i am unable to work with outlook? Everytime i open oultook it asks me to confirm my mail id and start with all the process of signing in.\n purchas laptop 30 may mention avail microsoft home outlook show unlicenc mean unabl work outlook everytim open oultook ask confirm mail id start process sign in\n Neutral 58 laptop available microsoft outlook unlicenced unable outlook everytime oultook mail process
598 I purchased with good deal in exchange of old laptop.It is very nice built quality compared to my old laptop. Metal finish, looks premium. Light weight & sleek.Boot time start and shut down time less than 5 sec, very fast because of SSD.Display, Mukti gesture trackpad, touchscreen and pen use extremely useful. Speakers are good.Battery backup for video streaming is 7-8 hours and for mild to medium use gives at least 5 hours, Can use for a day with single charge.Genuine HP product, checked on website 1 year warranty.MS office included, needs activation only.SSD storage available is 212 gbOut of 4 gb ram, 2 gb already occupied but most of work done smoothly with slightly lagging.Cons - display is HD not FHD OR IPSNo Backlit keyboardNo fingerprints sensorOther 2 models available with overcoming this feature which cost 10k extra.Major plus point - SSD + ms office + 360 convertible + pen includedthis is best model in market if u get it around 30k, just go for it.\n purchas good deal exchang old laptopit nice built qualiti compar old laptop metal finish look premium light weight sleekboot time start shut time less 5 sec fast ssddisplay mukti gestur trackpad touchscreen pen use extrem use speaker goodbatteri backup video stream 78 hour mild medium use give least 5 hour use day singl chargegenuin hp product check websit 1 year warrantym offic includ need activ onlyssd storag avail 212 gbout 4 gb ram 2 gb alreadi occupi work done smoothli slightli laggingcon display hd fhd ipsno backlit keyboardno fingerprint sensoroth 2 model avail overcom featur cost 10k extramajor plu point ssd ms offic 360 convert pen includedthi best model market u get around 30k go it\n Positive 168 good deal exchange old laptop.it nice quality old laptop metal finish premium light weight sleek.boot time start time less sec ssd.display mukti gesture trackpad touchscreen pen useful speakers backup video streaming hours mild medium use least hours day single charge.genuine hp product website year warranty.ms office activation only.ssd storage available gbout gb ram most work lagging.cons display hd fhd ipsno keyboardno sensorother models available feature 10k extra.major point ssd ms office convertible pen includedthis best model market 30k
599 Its fine, @ 42k its disappoiting why company omit backlid led keyboard.Licensed ms office ( outlook not bundled )Pen funtionality is not so great.Also mouse pad has a creaking noise. I made 2 attempt for replacement but no one processed my request.\n fine 42k disappoit compani omit backlid led keyboardlicens ms offic outlook bundl pen funtion greatalso mous pad creak nois made 2 attempt replac one process request\n Positive 42 fine @ disappoiting company omit ms office outlook pen funtionality great.also mouse pad noise attempt replacement one request
600 It's my first touchscreen laptop. But I've handled apple products before. So the touchscreen (obviously) doesn't add up. But I am pretty satisfied with it's look and functionality. Battery doesn't last long though.\n first touchscreen laptop ive handl appl product touchscreen obvious doesnt add pretti satisfi look function batteri doesnt last long though\n Neutral 33 first touchscreen laptop apple products touchscreen satisfied look functionality battery
601 Very Good Model for medium level users. Delivered the product one day before actual predicted date.Booting speed is really good. Only thing is that once you received the product, you have to remove many apps which are really not required. Touch is of average quality.Got a very attractive price for the old model.\n good model medium level user deliv product one day actual predict dateboot speed realli good thing receiv product remov mani app realli requir touch averag qualitygot attract price old model\n Positive 56 good model medium level users product day actual date.booting speed good only thing product many apps touch average quality.got attractive price old model
602 On 16th jul 19 received my hp pavilion able to switch on followed instructions next day when i switched on after providing pin blank screen is appearing.Lets c will i get some help. After which vl update\n 16th jul 19 receiv hp pavilion abl switch follow instruct next day switch provid pin blank screen appearinglet c get help vl update\n Positive 37 16th jul hp pavilion able followed instructions next day pin blank screen appearing.lets c help vl update
603 I brought this in primeday offer, after replacing my old laptop I got it in very low price which was never expected. Worth for price... But they mentioned as it has fingerprint scanner I'm not able to find anywhere in the laptop. HP should increase RAM capacity and HDD capacity which will be more helpful.\n brought primeday offer replac old laptop got low price never expect worth price mention fingerprint scanner im abl find anywher laptop hp increas ram capac hdd capac helpful\n Neutral 55 primeday offer old laptop low price worth price fingerprint scanner able laptop hp ram capacity hdd capacity helpful
604 At best an average product. Turned up with dead pixels on screen when switched on out of box. HP support says to contact Amazon. Amazon agent sets up replacement but no-one turns up to collect it back. Better to buy directly from manufacturers website instead of Amazon or third party retailers as in case of any out of box issues you will be shuttling between the two without a resolution. Description says HD screen but colour is so dull looks like non HD. Windows HDR configuration setting doesn't detect HD screen. Buy it only if you want to shuttle between Amazon and HP and still have dissatisfaction.\n best averag product turn dead pixel screen switch box hp support say contact amazon amazon agent set replac noon turn collect back better buy directli manufactur websit instead amazon third parti retail case box issu shuttl two without resolut descript say hd screen colour dull look like non hd window hdr configur set doesnt detect hd screen buy want shuttl amazon hp still dissatisfaction\n Positive 107 average product dead pixels screen box hp support contact amazon amazon agent replacement one better manufacturers website amazon third party retailers case box issues resolution description hd screen colour dull looks non hd windows configuration setting hd screen amazon hp dissatisfaction
605 Amazing Laptop. It is fast, touch is good, pen is working.It is completely worth buying. I think this is the best laptop at this price.Note: There is only one issue which is the battery doesn't work for more near to what hp claims. It is still very descent.\n amaz laptop fast touch good pen workingit complet worth buy think best laptop pricenot one issu batteri doesnt work near hp claim still descent\n Positive 48 amazing laptop fast touch good pen worth best laptop price.note issue battery near hp descent
606 I would have bought it for 42490 but I bought it for 44490 saying it was lightning deal just rubbish.\n would bought 42490 bought 44490 say lightn deal rubbish\n Neutral 20 lightning deal rubbish
607 Look wise and spec wise its a very good laptop. You may have to purchase external hard disc separately since this variant comes with 256 GB but this is SATA.\n look wise spec wise good laptop may purchas extern hard disc separ sinc variant come 256 gb sata\n Positive 31 wise wise good laptop external hard disc variant gb sata
608 I am using the product hardly for 5 days, I found rest thing is good but battery backup is really bad. It's just the start and after full charging the battery goes hardly 3-3.5 hours. I am worried going down the line how long it will work. The product claims to have a battery life of 5 hours, but it's not true.Not happy with battery :-\n use product hardli 5 day found rest thing good batteri backup realli bad start full charg batteri goe hardli 335 hour worri go line long work product claim batteri life 5 hour truenot happi batteri \n Negative 66 product days rest thing good battery backup bad start full battery hours worried line product battery life hours happy battery
609 Got the product with exchange if i3 laptop. Working fantastic.Mcafee purchased after one month expiry.Rest windows 10 with ms office free. Fast response . Only constraint is 256 GB ssd. Thank u Amazon.\n got product exchang i3 laptop work fantasticmcafe purchas one month expiryrest window 10 ms offic free fast respons constraint 256 gb ssd thank u amazon\n Positive 35 product exchange i3 laptop fantastic.mcafee month expiry.rest windows ms office free fast response constraint gb ssd u amazon
610 Touch screen and flexibility is the highlight which is available in other brands as well.Screen quality is not really good game put picture to understand better. Not visible from all angles.\n touch screen flexibl highlight avail brand wellscreen qualiti realli good game put pictur understand better visibl angles\n Positive 31 screen flexibility highlight available other brands well.screen quality good game picture better visible angles
611 By reading product details I got the impression that MS Office comes a part of the purchase. This representation is completely misleading. However, it is only that Office is installed, we need to purchase and activate. Please check and confirm whether the office comes activated or not? Also, I tried following the instructions given in one of the reviews, but that would not help too. Kindly help regarding this issue asap!\n read product detail got impress ms offic come part purchas represent complet mislead howev offic instal need purchas activ pleas check confirm whether offic come activ also tri follow instruct given one review would help kindli help regard issu asap\n Positive 71 product details impression ms office part purchase representation misleading office office instructions reviews issue
612 Quite good product, received in a good condition. But don't know how to turn on the backlit of keyboard.\n quit good product receiv good condit dont know turn backlit keyboard\n Positive 19 good product good condition backlit keyboard
613 Any bad review to this laptop does not suit this awesome laptop most people think that touchscreen is a disadvantage but this laptop is finominal also great for gaming in mine craft when PC will be in PC mode though when you turn it into a tab it turns into pocket edition best laptop of all time.\n bad review laptop suit awesom laptop peopl think touchscreen disadvantag laptop finomin also great game mine craft pc pc mode though turn tab turn pocket edit best laptop time\n Positive 57 bad review laptop awesome laptop most people touchscreen disadvantage laptop finominal great mine craft pc pc mode tab pocket edition best laptop time
614 Amazing service , amazing delivery, quality product at best market price. Thanks .\n amaz servic amaz deliveri qualiti product best market price thank \n Positive 13 amazing service amazing delivery quality product best market price thanks
615 Its a good product overall..but am finding the touchpad on the slower side even though i have increased its speed to the highest...rest very satisfied with the product\n good product overallbut find touchpad slower side even though increas speed highestrest satisfi product\n Positive 28 good product touchpad slower side speed highest satisfied product
616 Product received in damaged condition..\n product receiv damag condition\n Neutral 5 product condition
617 Received damaged product\n receiv damag product\n Neutral 3 damaged product
618 A very handy lapbook for me, fast and worthy.Different kind of usb ports available so i can connect to many devices and with its windows and office installed its kind a great.\n handi lapbook fast worthydiffer kind usb port avail connect mani devic window offic instal kind great\n Positive 32 handy lapbook fast worthy.different kind usb ports available many devices windows office kind great
619 A good buy for this budget. Touch screen is awesome, so is the stylus response. Battery life is amazing. The screen is a little unstable and vibrates even in a fan. All in all, worth it!\n good buy budget touch screen awesom stylu respons batteri life amaz screen littl unstabl vibrat even fan worth it\n Positive 36 good buy budget touch screen awesome stylus response battery life amazing screen little unstable vibrates fan worth
620 It's broke. Very poor quality. Even the services are not good and they are not replacing my laptop. Pathetic service Amazon\n broke poor qualiti even servic good replac laptop pathet servic amazon\n Negative 24 broke poor quality services good laptop pathetic service amazon
621 So far working excellent and loving it. Very user friendly.\n far work excel love user friendly\n Positive 10 excellent user friendly
622 Best laptop in budget category with SSD drive, touch screen, 8gen i3 processor, light weight, 2in1 laptop.\n best laptop budget categori ssd drive touch screen 8gen i3 processor light weight 2in1 laptop\n Positive 17 best laptop budget category ssd drive touch screen i3 processor light weight laptop
623 I am a lawyer so my usage is only for reading, research and drafting. I am really happy with the way this laptop has turned out to be in the first month of it's usage.\n lawyer usag read research draft realli happi way laptop turn first month usage\n Neutral 35 lawyer usage reading research drafting happy way laptop first month usage
624 I really like the keyboard and touch screen of the laptop .the keyboard is spacious and the laptop bends complete 360 without any hassle or challenge . Battery backup is ok , not that great .\n realli like keyboard touch screen laptop keyboard spaciou laptop bend complet 360 without hassl challeng batteri backup ok great \n Positive 36 keyboard screen laptop keyboard spacious laptop bends hassle challenge battery backup ok great
625 screen not working after four days of purchase.lets see if these guys will exchange it or not!!!. Sad\n screen work four day purchaselet see guy exchang sad\n Negative 18 screen days purchase.lets guys sad
626 Worried about the product.as I have paid on the ordered date. When the lap reached me , started using it. I got the value worth for my money...... Thankful to Amazon\n worri producta paid order date lap reach start use got valu worth money thank amazon\n Positive 31 worried product.as date lap value worth money thankful amazon
627 Amazing product\n amaz product\n Neutral 2 amazing product
628 Don't buy this product, my x360 is down from last 2 months, motherboard is not available and they refuse to change.\n dont buy product x360 last 2 month motherboard avail refus change\n Neutral 21 product x360 last months motherboard available
629 Nice and cool product..\n nice cool product\n Positive 4 nice cool product
630 Product differs from the image. Model and product does not match. No finger print sensor on the model.\n product differ imag model product match finger print sensor model\n Neutral 18 product image model product finger print sensor model
631 It was promised that the product will have a backlit keyboard but the keyboard doesn't has the feature. Beware of the fraud by #Amazon seller.\n promis product backlit keyboard keyboard doesnt featur bewar fraud amazon seller\n Positive 25 product backlit keyboard keyboard feature fraud amazon seller
632 Good battery life, fast booting and charging. Excellent for light user like me.\n good batteri life fast boot charg excel light user like me\n Positive 13 good battery life fast excellent light user
633 Worst decision ever to buy this laptop.Its very heavy and its looks are not same as it is shown in the pictures.\n worst decis ever buy laptopit heavi look shown pictures\n Negative 22 worst decision heavy looks same pictures
634 Very good product. Delivery time is very quick.\n good product deliveri time quick\n Positive 8 good product delivery time quick
635 It is very good portable lalptop\n good portabl lalptop\n Positive 6 good portable lalptop
636 The laptop is really good. i am using it on daily and didnt find any issues so far..\n laptop realli good use daili didnt find issu far\n Positive 18 laptop good issues
637 Screen quality is worse. Not a worthy product at this price. Will not recommend\n screen qualiti wors worthi product price recommend\n Positive 14 screen quality worse worthy product price
638 Good laptop as i was waiting for\n good laptop wait for\n Positive 8 good laptop
639 Battery life is not satisfactory\n batteri life satisfactory\n Positive 5 battery life satisfactory
640 everthing is great\n everth great\n Positive 3 everthing great
641 Good and sleek\n good sleek\n Positive 3 good sleek
642 So far so good,\n far good\n Positive 4 good
643 Product was nice but suggest to go for either with 10th gen or fhd by keeping 2k\n product nice suggest go either 10th gen fhd keep 2k\n Positive 17 product nice 10th gen fhd
644 Performance is ok , but the audio output is very, it looks like a silent pc. Hp may kindly check sound issue.\n perform ok audio output look like silent pc hp may kindli check sound issue\n Positive 22 performance ok audio output silent pc hp sound issue
645 i loved it..it gives awsm look and experience ..u can carry it like your phon..just fold it and go anywhere..\n love itit give awsm look experi u carri like phonjust fold go anywhere\n Positive 20 awsm look phon
646 Product is quite good. Highly recommended to purchase.\n product quit good highli recommend purchase\n Positive 8 product good
647 Worth the money\n worth money\n Positive 3 worth money
648 In this price ..it's give all features\n price give features\n Neutral 7 price features
649 Osm great feelings\n osm great feelings\n Positive 3 osm great feelings
650 Works awesome. Great value for money!\n work awesom great valu money\n Positive 6 awesome great value money
651 At this price it's awesome\n price awesome\n Positive 5 price awesome
652 This laptop is very very costly and slow in working very slow in works and touch quality is not good\n laptop costli slow work slow work touch qualiti good\n Positive 20 laptop costly slow works touch quality good
653 Good choice\n good choice\n Positive 2 good choice
654 This lap has many problems. I am trapped. Getting hanged every time I press right buttons.\n lap mani problem trap get hang everi time press right buttons\n Negative 16 lap many problems time right buttons
655 Good value for money. Fast due to ssd drive.\n good valu money fast due ssd drive\n Positive 9 good value money ssd drive
656 It's not working properly and taking too much time in opening any pc file\n work properli take much time open pc file\n Neutral 14 much time pc file
657 Good laptop in this price range.\n good laptop price range\n Positive 6 good laptop price range
658 Full HD display would have been a cherry on top\n full hd display would cherri top\n Positive 10 full hd display cherry top
659 Pls go for the full HD screen, this ones screen is pathetic.\n pl go full hd screen one screen pathetic\n Negative 12 full hd screen ones screen pathetic
660 Good product doing well till now\n good product well till now\n Positive 6 good product
661 Totally worth for money\n total worth money\n Positive 4 worth money
662 I loved it, value for money\n love valu money\n Positive 6 value money
663 Touch is smooth but display quality is not good\n touch smooth display qualiti good\n Positive 9 touch smooth display quality good
664 Good product fast delivery .. satisfied\n good product fast deliveri satisfied\n Positive 6 good product fast delivery satisfied
665 Awesome Speed and Good Looks. Overall nice deal\n awesom speed good look overal nice deal\n Positive 8 awesome speed good looks overall nice deal
666 Except resolution everything is great.\n except resolut everyth great\n Positive 5 resolution great
667 Amazing\n amazing\n Positive 1 amazing
668 Really worth for money..go for it..\n realli worth moneygo it\n Positive 6 worth money
669 Very bad product never buy this product...\n bad product never buy product\n Negative 7 bad product product
670 excellant product by hp\n excel product hp\n Positive 4 excellant product hp
671 Nice product iam just love with it 😍😍😍\n nice product iam love 😍😍😍\n Positive 8 nice product iam
672 Nice productEasy to useSmart locking\n nice producteasi usesmart locking\n Positive 5 nice producteasy usesmart
673 I like all its features.\n like features\n Positive 5 features
674 One of the best Laptop in this price..\n one best laptop price\n Positive 8 best laptop price
675 everything is perfect except storage\n everyth perfect except storage\n Positive 5 perfect storage
676 Very very useful in this price\n use price\n Neutral 6 useful price
677 The only drawback is the display\n drawback display\n Neutral 6 only drawback display
678 Its extremely good product\n extrem good product\n Positive 4 good product
679 Value maney\n valu maney\n Neutral 2 value maney
680 Just wow...\n wow\n Positive 2
681 Best product.\n best product\n Positive 2 best product
682 I liked the product\n like product\n Positive 4 product
683 Nice product,valuable\n nice productvaluable\n Positive 2 nice product valuable
684 Touch not so effective\n touch effective\n Positive 4 effective
685 Loved it!\n love it\n Positive 2
686 Very cool\n cool\n Positive 2 cool
687 Awesome laptop !!!\n awesom laptop \n Neutral 3 awesome laptop
688 A good buy\n good buy\n Positive 3 good buy
689 i like this laptop. it comes with good specifications for the price and also with a touch screen and a pen\n like laptop come good specif price also touch screen pen\n Positive 21 laptop good specifications price touch screen pen
690 Let me tell you a cautionary tale. I bought this laptop in late feb 2019. It has gone to the service centre thrice. It crashed in the third month. Motherboard crashed again in June. The system works now, but I have wait 15 min for it to start. The chrome doesn't work. MS word crashes every other hour. If you decide to call HP, their people will repeat the catchphrases like, " we are sorry" "let me connect you to somebody". That somebody will tell you that your system needs this or that- " get your RAM upgraded". Then you will do that and system will crash again. You will call them again, and again and again, till you decide that it was your fault that you trusted HP.Moral of this Story:1. Never buy a HP Laptop2. Never believe a customer care person ( He /she has no clue !)3. Never trust HP service.4. Don't fall for the touch and x360 gimmick. Its given so as to hide the fact that this machine doesn't work !5. Finally, choose anything but HP.\n let tell cautionari tale bought laptop late feb 2019 gone servic centr thrice crash third month motherboard crash june system work wait 15 min start chrome doesnt work ms word crash everi hour decid call hp peopl repeat catchphras like sorri let connect somebodi somebodi tell system need get ram upgrad system crash call till decid fault trust hpmoral story1 never buy hp laptop2 never believ custom care person clue 3 never trust hp service4 dont fall touch x360 gimmick given hide fact machin doesnt work 5 final choos anyth hp\n Negative 181 cautionary tale laptop late feb service centre thrice third month motherboard june system min chrome ms word other hour hp people catchphrases sorry system that- ram system fault hp.moral story:1 hp laptop2 customer care person clue hp service.4 touch x360 gimmick fact machine hp
691 I bought Hp Lapotp in June 2019 on amazon. Started having problems from start, complained to HP for attending defects ONSITE. they never came. Forced me to run to their service cenetr 25 km away. Then HP aksed me Rs 21,000 for Laptop under warranty ! HP website shows my laptop as 'expired warranty'. Never Buy HP Laptops/PCs. HP doesnt honour warranty, makes customer run to their service center. HP has Customer relation Manager concept. If u got any problem and u r not satidfied with HP rpoduct, repairs etc, this man is the ONLY point of contact and he shall ensure that u cough out money for repairs as everything they put blame on customer.Inferior quality material is used for Base Panel and Hinges. Have been having DELL laptop for self and my company, DELL is just Excellent, any problem in their laptop, they just replace..They dont fight like HP. BEWARE, if u want to save 2-3K...u will end up crying.\n i bought hp lapotp june 2019 amazon start problem start complain hp attend defect onsit never came forc run servic cenetr 25 km away hp aks rs 21000 laptop warranti hp websit show laptop expir warranti never buy hp laptopspc hp doesnt honour warranti make custom run servic center hp custom relat manag concept u got problem u r satidfi hp rpoduct repair etc man point contact shall ensur u cough money repair everyth put blame customerinferior qualiti materi use base panel hing dell laptop self compani dell excel problem laptop replacethey dont fight like hp bewar u want save 23ku end crying\n Negative 162 hp lapotp june amazon problems start hp defects service km hp laptop warranty hp website laptop warranty hp laptops pcs hp warranty customer service center hp customer relation manager concept problem u r hp rpoduct repairs man only point contact cough money repairs blame customer.inferior quality material base panel hinges dell laptop self company dell excellent problem laptop hp 3k u
692 Hp one of best laptop With Ms and windows 10 and 256 GB SSD. So fast and smooth.\n hp one best laptop ms window 10 256 gb ssd fast smooth\n Positive 18 hp best laptop ms windows gb ssd smooth
693 Don't choose this laptop. It's worst. Within 6 months laptop display will be crashed and you will not get support from HP. Worst support from HP.\n dont choos laptop worst within 6 month laptop display crash get support hp worst support hp\n Positive 26 laptop worst months laptop display support hp worst support hp
694 Osm yrr bahut zaberdast laptop hai but high graphic game mai thoda lod padta hai but yrr bahut stylish and osm yrr laptop ke sath ese fold kare tablet bhi bana skte hai bahut badiya 5out of 5..value for money this product.. Good agar aap lena ke soch rhe ho to jao le lo yrr kamal ka hai product hp.. Bahut light whiegt hai..\n osm yrr bahut zaberdast laptop hai high graphic game mai thoda lod padta hai yrr bahut stylish osm yrr laptop ke sath ese fold kare tablet bhi bana skte hai bahut badiya 5out 5valu money product good agar aap lena ke soch rhe ho jao le lo yrr kamal ka hai product hp bahut light whiegt hai\n Positive 64 osm yrr bahut zaberdast laptop hai high graphic game mai thoda lod padta hai yrr bahut stylish osm yrr laptop ke sath ese fold kare tablet bhi bana skte hai bahut badiya value money product good agar aap lena ke soch rhe ho jao le lo yrr kamal ka hai product hp bahut light whiegt hai
695 Worst product.Screen is very poor.Don't ever buy\n worst productscreen poordont ever buy\n Negative 7 worst product.screen poor.don't
696 Very low sound and cheap plastic Touchpad\n low sound cheap plastic touchpad\n Negative 7 low sound cheap plastic touchpad
697 keybord not good also slow processor\n keybord good also slow processor\n Positive 6 keybord good processor
698 Awesome lapy light weight ,decent look\n awesom lapi light weight decent look\n Neutral 6 awesome lapy light weight decent look
699 No\n no\n Negative 1
700 It is up to my expectations. Very nice laptop. Price worthy. With all nice specifications.\n expect nice laptop price worthi nice specifications\n Positive 15 expectations nice laptop price worthy nice specifications
701 Not able to open the laptoIt is asking for a passwordIs it a new laptop?I bought it for 44000You deliver a laptop that has been used by some one for 1 weekAnd with locked passwordHow can u do in that way\n abl open laptoit ask passwordi new laptopi bought 44000you deliv laptop use one 1 weekand lock passwordhow u way\n Neutral 41 able laptoit passwordis new laptop weekand passwordhow way
702 its a disaster\n disaster\n Negative 3 disaster
703 The 360 feature is great and the laptop is so fast in performance. It appeals to the looks so much and you get the value you spend. The key board is super quick and smooth in function, little heavier though. HP always surprises with innovation and this product also amazed me though little lesser than my previous one I bought, spectre 😜\n the 360 featur great laptop fast perform appeal look much get valu spend key board super quick smooth function littl heavier though hp alway surpris innov product also amaz though littl lesser previou one bought spectr 😜\n Positive 62 feature great laptop fast performance looks much value key board quick smooth function little heavier hp surprises innovation product little lesser previous one spectre
704 Fraud\n fraud\n Negative 1 fraud
705 An excellent product. But users manual for the pen is not available.\n excel product user manual pen available\n Positive 12 excellent product users manual pen available
706 Light and small laptop, easy to carry, original microsoft os , easy to update, use and upgrade. Pen depends on use, works fine, needs cell. Boot is quick. i did not get any product key to install MS OFFICE. SELLER did not provide activation key.Long term we will have to see.\n light small laptop easi carri origin microsoft os easi updat use upgrad pen depend use work fine need cell boot quick get product key instal ms offic seller provid activ keylong term see\n Positive 52 light small laptop easy original microsoft os easy upgrade pen use fine cell boot quick product key ms office seller activation key.long term
707 If you like to analyse for hours/days/weeks even, before buying a product, especially the technical stuff, then this review's helpful for you.To be honest, I was super scared to buy this. I know HP has a good reputation, but there was hardly any review regarding this product and not any detailed one. Plus I bought it during Diwali sale so the time was running. And the purchase was to be made in prepaid manner since Amazon doesn't allow COD on products costing this much, and there is no return but only replacement allowed on this laptop, so YIKES! Thankfully I did my homework for whole 2 days, learnt the basics of buying a laptop (type of ram I would prefer. what processor, battery strength, etc.) and searched around a lot and decided that this was the one I could get for greatest value at lowest price (Anyone else who is technologically disabled as I am, please refer to Amazon's laptop buying guide - that helped me a lot to understand what I want on my own and compare various models to narrow down on the one according to my priorities).Quality of laptop:Looks 9/10: I love the silver and textured look that this lappy gives off. The one star I deducted was because I have been told that the keyboard has been an issue for few customers because the letters are printed in dark gray. so there is not much of contrast. This wasn't an issue with me, coz I am already a fast typist and can type without continuously searching on keyboard. Please look at the images of the keyboard I have attached with this review and judge for yourself.Is it a fast laptop?: 9/10 Damn yes! Obviously during the initial setup it took quite a few minutes. After doing that, this lappy is super fast. I am a research scholar. I don't indulge in gaming right now. But I almost always have like 20-30 tabs open simultaneously for weeks or months together. So far, this lappy with its 8 gb ram seems to function efficiently even though I've got 10 tabs open right now. I deducted 1 star because I want to see if this will behave the same way after heavy usage. I will update this again after a few months of usage and change the rating accordingly.How's the battery?: 8/10 It came with a 39% charged one. I charged it to 100% and plugged it out. I have been watching videos online and downloading and browsing study stuff for the past 1 hour and it only reduced to 85% and that is doable for me. Happy with this one, coz no particular specification is mentioned related to battery usage in the specifications except for 3-cell battery mention (I asked my tech friend about this and he had said it should work upto 6 hours with regular browsing). I deducted 2 stars because of my own jealousy, coz another laptop by HP is available in the touchscreen series at same price with claim of 7 hours battery life in average and upto 13 at max. I gave that up for this, because my friend has had a touchscreen one, and the reflective surface is simply horrifying - too reflective, super sensitive, not at all visible from side angles/if you are standing at a peripheral position. Anyway, I hope this one does me prouder. 2 stars deducted also because laptops with 7-8 hours battery life are available at the same price. I will update it again after I check when the battery drains completely after heavy usage.The screen: 9.5/10! The only reason I was hesitant about was because I did not want a reflective surface screen - those are absolute headaches, my eyes hurt plus I get super scared looking at my own reflection after watching a horror movie (ha!). Anyway, this product surprised me with exactly what I wanted - a MATTE screen!! Not a screen skin/guard but the screen itself! In the specifications it was mentioned that a standard LED backlit screen's available, so I thought I was settling. But this was such a pleasant surprise. The matte screen does not reflect, the glare's low even if I increase the brightness plus really contributes to the laptop's aesthetics. Then why didn't I rate this 10/10? Because I am greedy and I really like if when the LCD covers the whole of screen. I am not really fond of the black body around a screen. Basically I like the TV look on a laptop (if that makes sense), a higher screen to body ratio. But at this price? Steal this!Sound: 8/10 The sound is sooooooo much better than I expected. Clear and loud too. I deducted 2 stars, coz well, like I said I am a greedy girl and the louder it is, the better!Ease of navigating Windows 10: 10/10 My tech friend had advised me not to go for Windows 10 coz it lags/hangs. I am super glad that I chose not to listen to him. I have been using Windows 7 professional up to now. So I was a little nervous to switch. But the transition is super smooth. Everything is easier to find and access.MS Office 2019 version: 9/10 I am a PhD scholar. So you can imagine the value of this for me. I wasn't willing to compromise on this version. But when I tried to activate, it was showing that only Office 365 version can be activated on this, nothing about the 2019 version. So I had a mini heart attack. After 5 mins of trying to use Office 365 version though, automatically a notification came up that prompted me to update the current version to Office Home and Student 2019 version (Phew!).I love the Microsoft Search feature they are showing off right now though. I deducted 1 star because I have received this lappy a week ago. I wanna use this for a longer period of time and update in case any issue comes up with this.Why buy this online instead of offline? At the same price, I was getting an offer to buy HP laptop with same specifications except for 4 gb ram and free goodies like headphones, bags, usb lights, pendrives, etc. But those over a 8 gb ram at the same price? Are you kidding me? This is a no brainer. You can buy the goodies yourself for under 1200 INR. But having a new ram of 4 gb difference plus the installation charges that would be charged to change/modify the old processor would amount at least up to 4k. Now it's a matter of priorities. Goodies vs better processor aka speed.I HAD ONE ISSUE WITH MY LAPTOP MODEL THOUGH:On the keyboard. above 2 number button "@" icon was made, but whenever I tried to press it, inverted comma/" appeared and "@" appeared when I pressed " button. I thought this was a malfunction in the hardware? Maybe the icons got misplaced? I know it is a small matter. But oh well, my mind's been wired to the traditional keyboard style and I wasn't looking to experiment with it. After an hour though, it became okay (o.O ??) Like it was supposed to in the first place. This is strange and sounds weird. Anyway, why I mentioned this here is if this happens to you, give it an hour or so and keep using your laptop normally. If it still doesn't get resolved like mine did (by magic?), then do contact the customer support of Amazon or ask for a replacement if it irks you enough.Thanks for reading my lengthy review!\n like analys hoursdaysweek even buy product especi technic stuff review help youto honest super scare buy know hp good reput hardli review regard product detail one plu bought diwali sale time run purchas made prepaid manner sinc amazon doesnt allow cod product cost much return replac allow laptop yike thank homework whole 2 day learnt basic buy laptop type ram would prefer processor batteri strength etc search around lot decid one could get greatest valu lowest price anyon els technolog disabl pleas refer amazon laptop buy guid help lot understand want compar variou model narrow one accord prioritiesqu laptoplook 910 love silver textur look lappi give one star deduct told keyboard issu custom letter print dark gray much contrast wasnt issu coz alreadi fast typist type without continu search keyboard pleas look imag keyboard attach review judg yourselfi fast laptop 910 damn ye obvious initi setup took quit minut lappi super fast research scholar dont indulg game right almost alway like 2030 tab open simultan week month togeth far lappi 8 gb ram seem function effici even though ive got 10 tab open right deduct 1 star want see behav way heavi usag updat month usag chang rate accordinglyhow batteri 810 came 39 charg one charg 100 plug watch video onlin download brows studi stuff past 1 hour reduc 85 doabl happi one coz particular specif mention relat batteri usag specif except 3cell batteri mention ask tech friend said work upto 6 hour regular brows deduct 2 star jealousi coz anoth laptop hp avail touchscreen seri price claim 7 hour batteri life averag upto 13 max gave friend touchscreen one reflect surfac simpli horrifi reflect super sensit visibl side anglesif stand peripher posit anyway hope one prouder 2 star deduct also laptop 78 hour batteri life avail price updat check batteri drain complet heavi usageth screen 9510 reason hesit want reflect surfac screen absolut headach eye hurt plu get super scare look reflect watch horror movi ha anyway product surpris exactli want matt screen screen skinguard screen specif mention standard led backlit screen avail thought settl pleasant surpris matt screen reflect glare low even increas bright plu realli contribut laptop aesthet didnt rate 1010 greedi realli like lcd cover whole screen realli fond black bodi around screen basic like tv look laptop make sens higher screen bodi ratio price steal thissound 810 sound sooooooo much better expect clear loud deduct 2 star coz well like said greedi girl louder bettereas navig window 10 1010 tech friend advis go window 10 coz lagshang super glad chose listen use window 7 profession littl nervou switch transit super smooth everyth easier find accessm offic 2019 version 910 phd scholar imagin valu wasnt will compromis version tri activ show offic 365 version activ noth 2019 version mini heart attack 5 min tri use offic 365 version though automat notif came prompt updat current version offic home student 2019 version phewi love microsoft search featur show right though deduct 1 star receiv lappi week ago wanna use longer period time updat case issu come thiswhi buy onlin instead offlin price get offer buy hp laptop specif except 4 gb ram free goodi like headphon bag usb light pendriv etc 8 gb ram price kid brainer buy goodi 1200 inr new ram 4 gb differ plu instal charg would charg changemodifi old processor would amount least 4k matter prioriti goodi vs better processor aka speedi one issu laptop model thoughon keyboard 2 number button icon made whenev tri press invert comma appear appear press button thought malfunct hardwar mayb icon got misplac know small matter oh well mind wire tradit keyboard style wasnt look experi hour though becam okay oo like suppos first place strang sound weird anyway mention happen give hour keep use laptop normal still doesnt get resolv like mine magic contact custom support amazon ask replac irk enoughthank read lengthi review\n Positive 1272 hours days weeks product technical stuff review helpful you.to honest scared hp good reputation review product detailed one diwali sale time purchase prepaid manner amazon cod products much return only replacement laptop yikes homework whole days basics laptop type ram processor battery strength lot one greatest value lowest price amazon laptop buying lot own various models one priorities).quality laptop silver textured lappy star keyboard issue few customers letters dark gray much contrast issue coz fast typist keyboard images keyboard review fast laptop initial setup few minutes lappy fast research scholar gaming tabs weeks months lappy gb ram tabs open star same way heavy usage few months usage rating accordingly.how battery % % videos browsing study stuff past hour % doable happy one coz particular specification related battery usage specifications battery mention tech friend upto hours regular browsing stars own jealousy laptop hp available touchscreen series same price claim hours battery life average upto max friend touchscreen reflective surface reflective super sensitive visible side angles peripheral position one stars laptops hours battery life available same price battery heavy screen only reason hesitant reflective surface screen absolute headaches eyes scared own reflection horror movie product matte screen screen skin guard screen specifications standard backlit screen available pleasant surprise matte screen glare low brightness laptop aesthetics greedy lcd whole screen fond black body screen tv laptop sense higher screen body ratio price this!sound sound better clear loud stars coz greedy girl louder better!ease windows tech friend windows coz hangs glad windows little nervous transition smooth easier access.ms office version phd scholar value willing version only office version version mini heart attack mins office version notification current version office home student version microsoft search feature star lappy week longer period time update case issue this.why online offline same price offer hp laptop same specifications gb ram free goodies headphones bags usb lights pendrives gb ram same price no brainer goodies inr new ram gb difference installation charges old processor least matter priorities goodies better processor aka speed.i issue laptop model keyboard number button icon inverted comma/ button malfunction hardware icons small matter mind traditional keyboard style hour okay o.o first place strange weird hour laptop mine magic customer support amazon replacement lengthy review
708 Worst laptop. Writing after 1 month of use,. Battery is not up to mark,no keyboard light, running max 3 hrs. speed is below avg, highly not recommended. I gifted to brother.. he is student that's why i m not returning.. dont buy if u r IT professional. worst laptop ever from HP\n worst laptop write 1 month use batteri markno keyboard light run max 3 hr speed avg highli recommend gift brother student that return dont buy u r profession worst laptop ever hp\n Negative 53 worst laptop month use battery mark keyboard light max hrs speed avg brother student u r professional worst laptop hp
709 The system Hangs... the ms office is trial version\n system hang ms offic trial version\n Neutral 9 system ms office trial version
710 Packing is worst, when i took parcel the packing box of amazon is already opened. But the inside HP product packing is very good, laptop is very nice.\n pack worst took parcel pack box amazon alreadi open insid hp product pack good laptop nice\n Positive 28 packing worst parcel packing box amazon inside hp product packing good laptop nice
711 Using since a month and no issues found.I recommend it.\n use sinc month issu foundi recommend it\n Positive 10 month issues found.i
712 Good for normal personal use\n good normal person use\n Positive 5 good normal personal use
713 good\n good\n Positive 1 good
714 The laptop is looking good but it perform little slow\n laptop look good perform littl slow\n Positive 10 laptop good little slow
715 Good quality product\n good qualiti product\n Positive 3 good quality product
716 This laptop is awesome\n laptop awesome\n Positive 4 laptop awesome
717 Value for mony good laptop.LAPTOP BATTARY 4 OUT OF 5DISPLAY 4 OUT OF 5BOTTING LAPTOP 5 OUT OF 5Overall performance 4 out of 5\n valu moni good laptoplaptop battari 4 5display 4 5bot laptop 5 5overal perform 4 5\n Positive 26 value mony good laptop.laptop battary laptop performance
718 Good performance\n good performance\n Positive 2 good performance
719 It looks good and perfect for movie watching.sound is also good. but System is slow from the first day. All the tab take long time to open. Whenever system get hanged it takes lot of time to restart. Hp customer support helped me and give some steps for system check and update. If you want to buy for regular use don't buy it.\n look good perfect movi watchingsound also good system slow first day tab take long time open whenev system get hang take lot time restart hp custom support help give step system check updat want buy regular use dont buy it\n Positive 63 good perfect movie watching.sound good system slow first day tab long time system lot time hp customer support steps system check regular use
720 Display quality is good....but slow in processing....\n display qualiti goodbut slow processing\n Neutral 7 display quality good slow processing
721 Value for money , purchase for Rs.31500LAPTOP BATTERY 3.5 OUT OF 5 ( 3 to 3.5 hours max)DISPLAY 4 OUT OF 5 ( Full HD display)BOOT time 4 OUT OF 5 ( 05to 10 Sec ) install the critical updates manually to improve the boot time and performance( windows 10 Home)Response 4.5 out of 5Good for daily use & students.Didn't check the performance with games.Overall performance 4 out of 5\n valu money purchas rs31500laptop batteri 35 5 3 35 hour maxdisplay 4 5 full hd displayboot time 4 5 05to 10 sec instal critic updat manual improv boot time perform window 10 homerespons 45 5good daili use studentsdidnt check perform gamesoveral perform 4 5\n Negative 70 value money purchase battery hours full hd display)boot time 05to sec critical updates boot time performance windows daily use students.didn't performance games.overall performance
722 Everything is good but little bit slow performance when we will browsing time\n everyth good littl bit slow perform brows time\n Positive 13 good little bit slow performance time
723 Good product but not very good Battery time is low\n good product good batteri time low\n Positive 10 good product good battery time low
724 I Ordered this lap on 17 sep and received on 21 morng.Worst delivery experience by amazon. And coming to the laptop its amazing even Better than my expectations.AMD Ryzen 3 awesome processor definitely lot better than i3 series.Its good for gaming im using it for almost 3 days its performance was very smooth and quick , im starting to wondering how they gave it for 28000. dell ryzen 3 laptop are giving it for 40000.Ryzen is giving pure graphical performance.If ur looking for midrange gaming laptop go for its best in this segment. Some guys are giving bad reviews about that dont get confused.If u utilities its full hardware and software facilities thn ur gng to love this.ill give some additional informationPros:1 Amd ryzen processor its have better multi thread performance when compare to intel i3good for gaming2 Performance u can run highend game's in this.if u upgrade ur ram to 8 GB it will run like a pro3 you have m2 slot for SSD4 Fast charging it takes around 45 min to charge 50% and battery is inbuilt5 its coming with Windows 10 life time validity.6 Comes with DVD drive and smooth finished coating.7 Light weight only 2 kg8 Price Best in segment.Cons:1 just a HD display not FHD2 Battery last upto 7 to 8hrs apprx in gaming 6 to 7hrs3 Yeah its Heating up little bit but not much.if ur well-known guy abt processor u come to know that heating and battery fast draining its a major issues for AMD.its default but im not worrying abt that .intel also have a heating problems and Ryzen is a next level processor from amd its handling heat and battery quite good compared to other AMD.laptop so don't worry abt heating.I strongly recommend this for u too\n order lap 17 sep receiv 21 morngworst deliveri experi amazon come laptop amaz even better expectationsamd ryzen 3 awesom processor definit lot better i3 seriesit good game im use almost 3 day perform smooth quick im start wonder gave 28000 dell ryzen 3 laptop give 40000ryzen give pure graphic performanceif ur look midrang game laptop go best segment guy give bad review dont get confusedif u util full hardwar softwar facil thn ur gng love thisil give addit informationpros1 amd ryzen processor better multi thread perform compar intel i3good gaming2 perform u run highend game thisif u upgrad ur ram 8 gb run like pro3 m2 slot ssd4 fast charg take around 45 min charg 50 batteri inbuilt5 come window 10 life time validity6 come dvd drive smooth finish coating7 light weight 2 kg8 price best segmentcons1 hd display fhd2 batteri last upto 7 8hr apprx game 6 7hrs3 yeah heat littl bit muchif ur wellknown guy abt processor u come know heat batteri fast drain major issu amdit default im worri abt intel also heat problem ryzen next level processor amd handl heat batteri quit good compar amdlaptop dont worri abt heatingi strongli recommend u too\n Positive 297 lap sep morng.worst delivery experience amazon laptop amazing better expectations.amd awesome processor i3 series.its good days performance smooth quick dell ryzen laptop pure graphical performance.if ur midrange gaming laptop best segment guys bad reviews confused.if u utilities full hardware software facilities thn ur gng this.ill additional informationpros:1 amd ryzen processor better multi thread performance intel i3good gaming2 performance highend game u upgrade ur ram gb pro3 m2 slot ssd4 min % battery inbuilt5 windows life time validity.6 dvd drive smooth light weight kg8 price segment.cons:1 hd display fhd2 battery last upto apprx heating little bit guy abt processor heating battery major issues amd.its default abt heating problems ryzen next level processor amd handling heat battery good other amd.laptop abt u
725 This laptop was great value for money Since I exchanged my old laptop. If you can buy this laptop under 23k , just go for it. You won’t regret it. There are many upgrade options available for this laptop So that you can improve the performance of this laptop. I didn’t find any other laptop where I can upgrade to Nvme m.2 SSD.So I was testing my laptop for the last few weeks without the upgrade and it was performing well. But there was some issues with the gaming, Photoshop and continues browsing with many tabs opened.Then I upgraded to WD green m.2 240Gb SSD (sata speed) and migrate the Windows OS to the SSD with the WD OS Clone tool which is available on the WD website. It did shows a significant improvement in the performance. The browsing, photoshop cc speed increased but not the gaming fps. Bought it form Md computers (online) for Rs 3500.If you have the budget go for Samsung 970 evo( Samsung 860 evo for low price).The boot time was reduced to 10sec, for HDD it was around 26sec , for SSD it was 16 sec.I tried to play GTA 5 on SSD , the loading time was reduced but it’s not playable even at lowest graphics settings.Then I upgraded the ram since 3Gb of my ram was always used by the OS, So I installed ADATA 4GB DDR4 2400Mhz ram for Rs 3000 , it really improved overall performance of the laptop. Ram is now running on Dual channel.The laptop came with Samsung M471A5244CB0-CTD Ram which was capable of running at 2666Mhz ,but the laptop motherboard only support 2400Mhz Ram. I opt the help of HP forum and a computer expert to find the best compatible ram for the laptop because there is a chance of some compatibility issues.I would say if you are buying any other ram other than ADATA AD4S2400J4G17-R , Make sure that you take the laptop to a technician so that even if the ram doesn’t support you still won’t loose your money.I tried to buy online, but if it doesn’t support means I can’t return the product.Now I can play GTA 5 with average 30fps at low settings,No photoshop editing lag ,applying filters and other effects.Pros:AMD RYZEN 3 performance is very goodCan be upgraded to nvme m.2 SSD (Samsung 970 evo the best)No overheating issues.Good viewing angle.Activated windows 10 HomeFast chargingCons:Battery life max 4hrsTouchpad not preciseNo backlit keyboardSpeakers averageRam and SSD slot not easily accessible\n laptop great valu money sinc exchang old laptop buy laptop 23k go won’t regret mani upgrad option avail laptop improv perform laptop didn’t find laptop upgrad nvme m2 ssdso test laptop last week without upgrad perform well issu game photoshop continu brows mani tab openedthen upgrad wd green m2 240gb ssd sata speed migrat window os ssd wd os clone tool avail wd websit show signific improv perform brows photoshop cc speed increas game fp bought form md comput onlin rs 3500if budget go samsung 970 evo samsung 860 evo low priceth boot time reduc 10sec hdd around 26sec ssd 16 seci tri play gta 5 ssd load time reduc it’ playabl even lowest graphic settingsthen upgrad ram sinc 3gb ram alway use os instal adata 4gb ddr4 2400mhz ram rs 3000 realli improv overal perform laptop ram run dual channelth laptop came samsung m471a5244cb0ctd ram capabl run 2666mhz laptop motherboard support 2400mhz ram opt help hp forum comput expert find best compat ram laptop chanc compat issuesi would say buy ram adata ad4s2400j4g17r make sure take laptop technician even ram doesn’t support still won’t loos moneyi tri buy onlin doesn’t support mean can’t return productnow play gta 5 averag 30fp low settingsno photoshop edit lag appli filter effectsprosamd ryzen 3 perform goodcan upgrad nvme m2 ssd samsung 970 evo bestno overh issuesgood view angleactiv window 10 homefast chargingconsbatteri life max 4hrstouchpad preciseno backlit keyboardspeak averageram ssd slot easili accessible\n Positive 417 laptop great value money old laptop laptop 23k t regret many upgrade options available laptop performance laptop t other laptop nvme m.2 ssd.so laptop last few weeks upgrade issues gaming photoshop many tabs opened.then green m.2 gb ssd sata speed windows os ssd wd os clone tool available wd website significant improvement performance browsing photoshop cc speed gaming fps md computers rs 3500.if budget samsung evo samsung evo low boot time 10sec hdd 26sec ssd gta ssd loading time playable lowest graphics settings.then ram gb ram os adata gb ddr4 ram rs overall performance laptop ram dual channel.the laptop samsung m471a5244cb0-ctd ram capable laptop motherboard 2400mhz help hp forum computer expert compatible ram laptop chance compatibility other ram other adata ad4s2400j4g17-r sure laptop technician ram t support t loose money.i t support product.now gta average 30fps low settings photoshop editing lag filters other effects.pros amd ryzen performance goodcan nvme m.2 ssd samsung evo best)no issues.good windows homefast chargingcons battery life max preciseno keyboardspeakers averageram ssd slot accessible
726 Ordered it as a work laptop. Very nice battery life. Excellent picture. Slight hesitation when loading graphics intensive Power Point.NOT a gaming laptop. An excellent work horse for traveling for businessAlso, Get 10% Cashback on this or Any Laptop by Ordering through vqr.in/83.\n order work laptop nice batteri life excel pictur slight hesit load graphic intens power pointnot game laptop excel work hors travel businessalso get 10 cashback laptop order vqrin83\n Positive 43 work laptop nice battery life excellent picture slight hesitation loading graphics power gaming laptop excellent work horse businessalso % cashback laptop vqr.in/83
727 I have upgraded the RAM to 8 GB. The RAM specification that you need is DDR4 2400 Mhz SDRAM. There are 2 slots, so adding another RAM isnt an issue. Dont try to open the laptop yourself as its not easy, take it to someone who knows HP laptops well. The responsiveness of the laptop has improved tremendously with this RAM addition. In case someone needs further enhancement of the performance, I would recommend adding an SSD as M2 slot is available but I didnt find the need as of now. Adding the picture of the RAM that I installed\n upgrad ram 8 gb ram specif need ddr4 2400 mhz sdram 2 slot ad anoth ram isnt issu dont tri open laptop easi take someon know hp laptop well respons laptop improv tremend ram addit case someon need enhanc perform would recommend ad ssd m2 slot avail didnt find need ad pictur ram installed\n Positive 100 ram gb ram specification ddr4 mhz sdram slots ram issue laptop easy hp laptops responsiveness laptop ram addition case further enhancement performance ssd m2 slot available need picture ram
728 Pros:Ryzen 3 with Vega graphicsSupport up to 16gb ramDedicated M2 slot for ssdPreloaded OSAll the needed portsValue for money bought it for 22k after all discounts.Con:Worst screen of allVery slow HDDExperience and suggestion:On the initial days the performance was ok and sometimes slow.Uninstalled Mcafe and using windows defenderBest part is having addition ram and m2 slotSo 1st installed 8gb ram but didn’t see any performance improvement.Then went with 240gb wd green Sata 3 sad and cloned the os there voila OS loads in a second.So at 30k now have 12gb ram 240gb ssd 1tb hdd ryzen 3 what else u can ask.\n prosryzen 3 vega graphicssupport 16gb ramded m2 slot ssdpreload osal need portsvalu money bought 22k discountsconworst screen allveri slow hddexperi suggestionon initi day perform ok sometim slowuninstal mcafe use window defenderbest part addit ram m2 slotso 1st instal 8gb ram didn’t see perform improvementthen went 240gb wd green sata 3 sad clone os voila os load secondso 30k 12gb ram 240gb ssd 1tb hdd ryzen 3 els u ask\n Positive 102 pros vega graphicssupport gb m2 slot osall portsvalue money 22k discounts.con worst screen allvery slow hddexperience suggestion initial days performance ok mcafe windows defenderbest part addition ram m2 slotso 1st gb ram didn t performance improvement.then gb green sata sad os voila os 30k gb ram gb ssd tb hdd ryzen
729 Before buying this laptop, I was using a notepad that would last over 8 to 10 hours when fully charged. So, this time, I was looking for a laptop that could stay up and working for a good amount of time. This product - HP 15 AMD Ryzen 3 15.6-inch Laptop (4GB/1TB HDD/Windows 10 Home/Sparkling Black/2.04 kg - is being sold promising that it has 13 hours long battery. Well, that is absolutely false. I am a writer. So, my basic needs (applications) on a laptop/computer are - Ms Word, Ms Excel, Paint, Google Chrome, Firefox Browser. I barely watch movies/YouTube on it. I don't play games on it. But, it's battery exhausts in just 5 to 6 hours. Talking about other features, it is very quite fast. If you have got fast data connection, websites will load in a blink. Sound quality is great. When I received this laptop, I played a few songs on it. It was an awesome experience. But, my friends, if you are looking for a laptop with a long lasting battery, this is certainly not a good to go option.\n buy laptop use notepad would last 8 10 hour fulli charg time look laptop could stay work good amount time product hp 15 amd ryzen 3 156inch laptop 4gb1tb hddwindow 10 homesparkl black204 kg sold promis 13 hour long batteri well absolut fals writer basic need applic laptopcomput ms word ms excel paint googl chrome firefox browser bare watch moviesyoutub dont play game batteri exhaust 5 6 hour talk featur quit fast got fast data connect websit load blink sound qualiti great receiv laptop play song awesom experi friend look laptop long last batteri certainli good go option\n Positive 186 laptop notepad hours time laptop good amount time product hp amd ryzen laptop tb hdd windows home black/2.04 kg hours long battery false writer basic needs applications laptop computer ms word ms excel paint google chrome firefox browser movies youtube games battery hours other features fast fast data connection websites blink sound quality great laptop few songs awesome experience friends laptop battery good option
730 Best thing about this laptop is processor which performs almost the same as i3 8th gen at a significantly cheap price. Got it for 22k. 3k extra for 4gb ram Module as 4 gb is not sufficient for Windows 10. Many who complained about laptop being slow should upgrade to 8 gb. It has changed the response drastically. No more hang ups. Adding a ssd could do wonders though have not added one yet.Edit. Finally decided to add a ssd drive. bought WD Green 120 GB M2 drive for Rs. 2280 from amazon. Added it myself. Now the speed difference is apparent in test results. system boots in 15 secs as compared to 40 secs earlier. responses have become much better. the reading speeds are good but writing not so great. I would suggest if you can spend more go for WD blue or Samsung Evo 860. they are more expansive but have writing speeds in the range of 500MB/S. WD Green is for budget users and I feel satisfied with the performance for the price paid.Edit 2 - Many were complaining about battery backup not as expected. Initially when i was using wifi and at moderate brightness i was getting 4-5 hours max. but once you turn off wifi and use it for moderate works like watching movies(not ultra 4k resolution but upto 1080p or 720p) the backup is around 6-7 hours. and while working on word excel etc backup is up to 10 hours usually. Turning off WiFi saves a lot of battery.\n best thing laptop processor perform almost i3 8th gen significantli cheap price got 22k 3k extra 4gb ram modul 4 gb suffici window 10 mani complain laptop slow upgrad 8 gb chang respons drastic hang up ad ssd could wonder though ad one yetedit final decid add ssd drive bought wd green 120 gb m2 drive rs 2280 amazon ad speed differ appar test result system boot 15 sec compar 40 sec earlier respons becom much better read speed good write great would suggest spend go wd blue samsung evo 860 expans write speed rang 500mb wd green budget user feel satisfi perform price paidedit 2 mani complain batteri backup expect initi use wifi moder bright get 45 hour max turn wifi use moder work like watch moviesnot ultra 4k resolut upto 1080p 720p backup around 67 hour work word excel etc backup 10 hour usual turn wifi save lot battery\n Positive 255 best thing laptop processor same i3 8th gen cheap price 3k extra gb ram module gb sufficient windows many laptop slow gb response more hang ups ssd wonders yet.edit ssd drive wd green gb m2 drive rs amazon speed difference apparent test results system boots secs secs responses better reading speeds good great go blue samsung evo expansive speeds range 500mb s green budget users satisfied performance price paid.edit many battery backup moderate brightness hours max wifi moderate works movies(not ultra resolution upto 1080p 720p backup hours word excel backup hours wifi lot battery
731 Guys laptop is very good .just buy a 4gb ram and ssd slot then lappy will perform like anything .Wd ssd from amazon is available for 2300 rs buy it but check the version of ssd which fits this lappy.i got it for 22k after cash back worth it.Very fast .Touch pad is good.Battery last 4hrs with full browsing but its got fast charging so its good for me\n guy laptop good buy 4gb ram ssd slot lappi perform like anyth wd ssd amazon avail 2300 rs buy check version ssd fit lappyi got 22k cash back worth itveri fast touch pad goodbatteri last 4hr full brows got fast charg good me\n Positive 69 guys laptop good gb ram ssd slot lappy ssd amazon available rs version ssd lappy.i cash worth it.very .touch pad last full browsing good
732 The delivery was quick , got it for a good price in amazon sale .The laptop looks quite good and also I am able to open laptop with one hand which is great .Coming to display it's average and can't expect more .The processor amd 3 ryzen 2200 u is good and easily comparable to intel i3 7th Gen .4gb Ram is enough for basic tasks but you definitely need to upgrade to 8gb if planning to do anything more and trust me the performance after that would be great .The additional bonus is m2 slot for SSD , you can install a SSD along with ur 1tb HDD and install windows in SSD and the the magic and speed .One thing I did not like in the laptop is the sound , its low compared to other standards and the sound cracks in high pitch voices , I ve tried updating the drivers and checking sound settings but no use .Still it's not very noticeable so I passed it and did not return the laptop.If ur looking for a upgradable laptop with good processor under a budget go for it , but only buy it in a sale , never pay 30 k for this .If budget permits definitely concider upgrading to ssd and atleast 8gb more ram , it will give significant speed boost .Have not tried any games , will update after testing\n deliveri quick got good price amazon sale laptop look quit good also abl open laptop one hand great come display averag cant expect processor amd 3 ryzen 2200 u good easili compar intel i3 7th gen 4gb ram enough basic task definit need upgrad 8gb plan anyth trust perform would great addit bonu m2 slot ssd instal ssd along ur 1tb hdd instal window ssd magic speed one thing like laptop sound low compar standard sound crack high pitch voic tri updat driver check sound set use still notic pass return laptopif ur look upgrad laptop good processor budget go buy sale never pay 30 k budget permit definit concid upgrad ssd atleast 8gb ram give signific speed boost tri game updat testing\n Positive 238 delivery quick good price amazon sale .the laptop good able laptop hand great average more .the processor amd ryzen u good comparable intel i3 7th gen .4 gb ram enough basic tasks gb planning more performance great additional bonus m2 slot ssd ssd ur tb hdd windows ssd magic speed .one thing laptop sound low other standards sound cracks high pitch voices ve drivers sound settings use noticeable laptop.if ur upgradable laptop good processor budget go sale k budget ssd atleast ram significant speed boost games
733 After Using More Than a Month here is my Review. This Hp Model only supports Windows 10. You can't install windows 7 you will get an error of Acpi is not Fully support, contact BIOS vendor. (my Bios are upto date as per vendor).For Linux Environment Wifi will not Supported. You need buy a seperate wifi adaptor dont buy this if you are intend to use for Ubuntu or Kali Linux or any linux environment, Graphics managable just ok.you will only get 250+MB video Ram which is worst part , you can't work o adobe programs properly. Battery backup is 3hrs only. Watched a full movie (2hr15minutes) at 100% and after finishing 20% remained. Camera quality is GOOD. Display Reflects a lot not friendly. Has some Graphics driver problem which supplier doesn't accept when i gave feedback. You will get bsod error when some applications use graphics (thats not application problem at all ) purely manufacturer defect which they don't accept. Now for the Windows 10 google to disable so much of bloatware which will increase battery and performance. Use the dark mode available in personalization. My rating 2/5 for medium type users. 4/5 for normal users.\n use month review hp model support window 10 cant instal window 7 get error acpi fulli support contact bio vendor bio upto date per vendorfor linux environ wifi support need buy seper wifi adaptor dont buy intend use ubuntu kali linux linux environ graphic manag okyou get 250mb video ram worst part cant work adob program properli batteri backup 3hr watch full movi 2hr15minut 100 finish 20 remain camera qualiti good display reflect lot friendli graphic driver problem supplier doesnt accept gave feedback get bsod error applic use graphic that applic problem pure manufactur defect dont accept window 10 googl disabl much bloatwar increas batteri perform use dark mode avail person rate 25 medium type user 45 normal users\n Negative 204 more month review hp model windows windows error acpi support contact bios vendor bios upto date vendor).for linux environment wifi seperate wifi adaptor ubuntu kali linux linux environment graphics 250+mb video ram worst part o adobe programs battery backup full movie % % camera quality good display lot friendly graphics driver problem supplier feedback bsod error applications graphics application problem manufacturer defect windows google much bloatware battery performance dark mode available personalization rating medium type users normal users
734 Product what I got is not upto the mark I think amazon has given me used one bcoz yhere is problem with switch . Abruptly it dont work for sometime abd bateery backup is worse its new laptop abd giving a battery backup of 2 hour\n product got upto mark think amazon given use one bcoz yhere problem switch abruptli dont work sometim abd bateeri backup wors new laptop abd give batteri backup 2 hour\n Negative 47 product mark amazon bcoz problem switch abd bateery backup worse new laptop abd battery backup hour
735 Laptop slow at starting but after update all your pending window updates...it works like charm.....just go for it. or if you want superbb speed than upgrade this with samsung evo 970 ssd and 8 gb crucial ram......\n laptop slow start updat pend window updatesit work like charmjust go want superbb speed upgrad samsung evo 970 ssd 8 gb crucial ram\n Positive 37 laptop update window updates charm superbb speed samsung evo ssd gb crucial ram
736 Amazing laptop. Beautiful, sleek, stylish and also not bulky. Performance is very fast and remarkable. Battery backup is also commendable. Crystal clear display. Audio Speaker has rich bass and hd clear sound.processor and graphics performing magnificent together. Overall hp has given a wonderful product . Thanks hp. Highly recommend from my side. Go for it. Thanks..😁😁😁\n amaz laptop beauti sleek stylish also bulki perform fast remark batteri backup also commend crystal clear display audio speaker rich bass hd clear soundprocessor graphic perform magnific togeth overal hp given wonder product thank hp highli recommend side go thanks😁😁😁\n Positive 56 amazing laptop beautiful sleek stylish bulky performance fast remarkable battery backup commendable crystal clear display audio speaker rich bass hd clear sound.processor graphics magnificent overall hp wonderful product thanks hp side thanks
737 Price : This is a great laptop at the price offered by HP. 5 full stars. Nothing to beat. It makes it all the more better deal as it comes preloaded with Win10. At 25k deal in festive sale a great price. Performance : The new AMD ryzen processors with Vega graphics match and can even beat their Intel counterparts in performance per watt. However I have no idea why HP and all other manufacturers spoil this performance with Win10 bloatware loaded on an ancient 1TB HDD. Even for a little more a 120GB SDD is so much better. So here 3 stars only for not having SDD in 2018. Have ordered an SDD and have to discard the HDDThe worst however is the screen. I don’t think I have seen more worst screen in my life. My 10 year old Vaio VGN-N31M/W had such an awesome screen. And this is what we have in 2018? Found the reason: this laptop display is 6 bit colour with RBG model. Have to give it 2 stars only ! Can’t replace screen but have to make do with external monitor!\n price great laptop price offer hp 5 full star noth beat make better deal come preload win10 25k deal festiv sale great price perform new amd ryzen processor vega graphic match even beat intel counterpart perform per watt howev idea hp manufactur spoil perform win10 bloatwar load ancient 1tb hdd even littl 120gb sdd much better 3 star sdd 2018 order sdd discard hddthe worst howev screen don’t think seen worst screen life 10 year old vaio vgnn31mw awesom screen 2018 found reason laptop display 6 bit colour rbg model give 2 star can’t replac screen make extern monitor\n Positive 188 price great laptop price hp . full stars better deal win10 festive sale great price performance new amd ryzen processors vega graphics match intel counterparts performance watt idea hp other manufacturers performance win10 bloatware ancient tb hdd little more gb sdd better stars sdd sdd hddthe worst screen t worst screen life year old vaio vgn n31m w awesome screen reason laptop display bit colour rbg model stars screen external monitor
738 Screen is great .Yet to put an additional 4GB RAM. Removed bloat ware. Installed Firefox only (no chrome) & not using explorer . Did a few tweaks & Laptop starts fast and no hanging. Battery 4 1/2 hours only, but recharging is fast. Bought in the OCT sale @ 21999 (after 2000 SBI card instant discount + Rs 1000 amazon pay cash back) . At this price laptop is better than Core I3 laptops.\n screen great yet put addit 4gb ram remov bloat ware instal firefox chrome use explor tweak laptop start fast hang batteri 4 12 hour recharg fast bought oct sale 21999 2000 sbi card instant discount rs 1000 amazon pay cash back price laptop better core i3 laptops\n Positive 74 screen great .yet additional gb ram bloat ware firefox chrome explorer few tweaks laptop hanging battery hours recharging fast oct sale @ sbi card instant discount rs amazon cash price laptop better i3 laptops
739 I ordered this laptop on 10 oct and got it on 13 oct but it was supposed to be delivered on 12 oct.so it was one day delayed delivery..but it is fine no problem.next packaging was very poor..it had no plastic air bubbles wrapping and laptop was delivered in rain so it got wet..I was very wooried if the laptop got damaged but thanks to hp pacaking that it was safe.coming to the laptop it is value fir money..I got it in 22000 invluding all discounts so it is best device in this range.sound is a bit low according to me .rest it hangs sometimes due to low ram but if you use an additional 4 gb ram it would work like a beast.display is average.no heating issues tillnow ..and I am satisfied with this.\n order laptop 10 oct got 13 oct suppos deliv 12 octso one day delay deliverybut fine problemnext packag poorit plastic air bubbl wrap laptop deliv rain got weti woori laptop got damag thank hp pacak safecom laptop valu fir moneyi got 22000 invlud discount best devic rangesound bit low accord rest hang sometim due low ram use addit 4 gb ram would work like beastdisplay averageno heat issu tillnow satisfi this\n Positive 138 laptop oct oct oct.so day delivery fine problem.next packaging poor plastic air bubbles wrapping laptop rain wet wooried laptop thanks hp laptop value fir money discounts best device range.sound bit low low ram additional gb ram beast.display heating issues satisfied
740 In this price range HP is providing a good budget laptop... Games can be played casually but not as regular basis... Ram is 4gb, so sometimes it used to hang... Better to put extra 4 gb so that there left no hanging issue. Others editing work can be done smoothly... AUTO CAD 2007 is running smoothly... Even racing game okay but battle field 4 is a bit problem... battery doesnot last more than 2 hrs that to on heavy heavy use it lasts only 1:30 hrs... Screen is awesome. HP service given is good. Inbuilt Microsoft office is there. Even in built Microsoft is awesome... Donot use for heavy games... use only for office work\n price rang hp provid good budget laptop game play casual regular basi ram 4gb sometim use hang better put extra 4 gb left hang issu other edit work done smoothli auto cad 2007 run smoothli even race game okay battl field 4 bit problem batteri doesnot last 2 hr heavi heavi use last 130 hr screen awesom hp servic given good inbuilt microsoft offic even built microsoft awesom donot use heavi game use offic work\n Positive 115 price range hp good budget laptop games regular basis ram gb better extra gb hanging issue others editing work auto cad game battle field bit problem battery doesnot more heavy heavy use hrs screen awesome hp service good inbuilt microsoft office microsoft awesome use heavy games office work
741 Laptop is hanging for past 2 months. It's warranty period. There is no response from Amazon , horrible service even your toll lines,not working no landline service\n laptop hang past 2 month warranti period respons amazon horribl servic even toll linesnot work landlin service\n Positive 27 laptop past months warranty period response amazon horrible service toll lines landline service
742 Just upgrade m.2 128 gb NVME SSD and another 4 gb ram as I did, and you are good to go. After the upgrade, the laptop boots up within 5 seconds, which is awsome at this price point. The gaming is also decent, with 60-70 fps for modern combat 5. But the battery backup is not as they claim for upto 10+ hours! It hardly gives 4-5 hours. Other than that everything is fine! And yeah the laptop is light weight as well.\n upgrad m2 128 gb nvme ssd anoth 4 gb ram good go upgrad laptop boot within 5 second awsom price point game also decent 6070 fp modern combat 5 batteri backup claim upto 10 hour hardli give 45 hour everyth fine yeah laptop light weight well\n Positive 83 gb nvme ssd gb ram good upgrade laptop seconds price point gaming decent fps modern combat battery backup upto hours hours other fine laptop light weight
743 Ryzen 3 is good and windows 10 with ms office is nice. Silver look is attractive and kb mouse works fine. Display looks cheap and viewing angles not good. Little bit heating like 4th generation processors. Battery life is average. Installed another 4gb stick and its performance boosted. I hope again performance will improve after installing ssd as it have m.2 bus. Overall processor is better than i3 7th generation, but gpu is weak than nvidia mx110.Review after 3 months use: Wow, that M.2 port is very good. I have installed a SATA m.2 SSD and laptop working like a charm. Zero lags with Dual core Ryzen 3!! If you wana purchase this laptop, don't miss to install m.2 SSD. I have transferred my Windows10 on SSD, and 1TB internal HDD is for storage only.\n ryzen 3 good window 10 ms offic nice silver look attract kb mous work fine display look cheap view angl good littl bit heat like 4th gener processor batteri life averag instal anoth 4gb stick perform boost hope perform improv instal ssd m2 bu overal processor better i3 7th gener gpu weak nvidia mx110review 3 month use wow m2 port good instal sata m2 ssd laptop work like charm zero lag dual core ryzen 3 wana purchas laptop dont miss instal m2 ssd transfer windows10 ssd 1tb intern hdd storag only\n Positive 135 ryzen good windows ms office nice silver look attractive kb mouse display cheap angles good little bit 4th generation processors battery life average gb stick performance performance ssd m.2 bus overall processor better i3 7th generation gpu weak nvidia mx110.review months port good sata m.2 ssd laptop charm lags dual core ryzen laptop m.2 windows10 ssd tb internal hdd storage
744 Pros:+good build quality under the category budget laptop/notebook+No heating issues noted (had my fingers crossed until being tested for the heating issue as noted in other reviews prior to purchase)+display and color reproduction was good+touchpad response is quite good.+ Excellent Amazon customer service. (Replacement provided within a week)Cons:- The first laptop delivered had an issue with battery backup, hardly ran for 2hrs30mins. But the replacement laptop as provided by amazon Customer service did quite well of 4hrs30mins backup which by the way is far from what has been advertised as ".....upto 13hrs battery backup"- System gets slower with antivirus software installed\n prosgood build qualiti categori budget laptopnotebookno heat issu note finger cross test heat issu note review prior purchasedisplay color reproduct goodtouchpad respons quit good excel amazon custom servic replac provid within weekcon first laptop deliv issu batteri backup hardli ran 2hrs30min replac laptop provid amazon custom servic quit well 4hrs30min backup way far advertis upto 13hr batteri backup system get slower antiviru softwar installed\n Positive 101 build quality category budget laptop notebook+no heating issues fingers heating issue other reviews purchase)+display color reproduction good+touchpad response good.+ excellent amazon customer service replacement week)cons:- first laptop issue battery backup 2hrs30mins replacement laptop amazon customer service 4hrs30mins backup way upto 13hrs battery backup"- system slower antivirus software
745 Future generation ryzen based processor only,Advantageos win 10,amd vega 3 graphics, ddr4 2400 mhz ram, 2.5 ghz processors clock up to 3.5ghz, 1tb hdd, m.2 slot available for upgrade optane memory to extra speed up your system, value for moneyConsDual coreCheap plastic material\n futur gener ryzen base processor onlyadvantageo win 10amd vega 3 graphic ddr4 2400 mhz ram 25 ghz processor clock 35ghz 1tb hdd m2 slot avail upgrad optan memori extra speed system valu moneyconsdu corecheap plastic material\n Positive 44 future generation ryzen processor advantageos vega graphics mhz ram ghz processors tb hdd slot available upgrade optane memory extra speed system value moneyconsdual corecheap plastic material
746 Look wise Excellent, Cost wise Extraordinary, Life time inbuilt Window 10... Wow... Camera Quality as usual as others competitors, Speed is as usual as 4 GB RAM, can't expect too much fact with this specification. Overall Value for Money for a Good Product.\n look wise excel cost wise extraordinari life time inbuilt window 10 wow camera qualiti usual other competitor speed usual 4 gb ram cant expect much fact specif overal valu money good product\n Positive 44 wise excellent wise extraordinary life time inbuilt window camera quality usual others competitors speed usual gb ram much fact specification overall value money good product
747 Value for money laptop from hp. Better to wait for the deals and buy it for 25k. After festival deals are over, the price is showing 32k.Initially it was slow and was taking around 2 minutes to fully load windows 10. After reading rivews and suggestions, i bought additional 4gb ram and 128 gb ssd and installed it. (How to do it yourself and about installation process, you can find in YouTube)Now its booting really fast. Windows load within 25 seconds.So better will be to wait for the good deal and spend rest of the money in upgrading ram and ssd. So finally within 30k you will get a laptop which will be fast enough to compare with i5 powered notebooks. Thanks\n valu money laptop hp better wait deal buy 25k festiv deal price show 32kiniti slow take around 2 minut fulli load window 10 read rivew suggest bought addit 4gb ram 128 gb ssd instal instal process find youtubenow boot realli fast window load within 25 secondsso better wait good deal spend rest money upgrad ram ssd final within 30k get laptop fast enough compar i5 power notebook thanks\n Positive 122 value money laptop hp deals 25k festival deals price slow minutes windows rivews suggestions additional gb ram gb ssd installation process youtube)now booting windows better good deal rest money ram ssd 30k laptop i5 notebooks thanks
748 pros - premium look lightweight ryzen 3 at lower pricecons - battery not easily removable liitle hang need 8gb ram mcaffe and ms office only available for 30 days free trial\n pro premium look lightweight ryzen 3 lower pricecon batteri easili remov liitl hang need 8gb ram mcaff ms offic avail 30 day free trial\n Positive 35 pros premium look lightweight ryzen lower pricecons battery removable liitle gb ram mcaffe ms office available days free trial
749 I Use it for browsing the net and light gaming.So far very satisfied with the product.Rest all your doubts on AMD, this one is a deal clincher at the given festival price point.ProsTotal value for money at 24k- all ports available including DVD RWThe Ryzen 3 is good, no problems with that- comparable to i5 IMHO, Can handle videos and games smoothly4GB RAM is just about enough- but maybe less for W10The key board and touchpad are convinient to useSound is loud and goodConsBattery backup is just about 2.5hrs max- 3 Cell onlySlow to bootup- Windows 10 maybeLot of bloatware, but you can uninstallYou get what you pay(YGWUP)Plain Jane looksThe screen resolution is poor- only HDKeyboard not easy to use at night/ low lightSuggestions for upgradeGo for SSD -120 GB on Amazon for 2.5KRAM needs a boost - 8GB maybeScreen replacement to FHDDo this and you may leave light behind!All in all, if you are looking for a loaptop to surf the web, do weekend office work and play games ocassionally and want a budget laptop go for it, you will surely not be disappointed.\n use brows net light gamingso far satisfi productrest doubt amd one deal clincher given festiv price pointprostot valu money 24k port avail includ dvd rwthe ryzen 3 good problem compar i5 imho handl video game smoothly4gb ram enough mayb less w10the key board touchpad convini usesound loud goodconsbatteri backup 25hr max 3 cell onlyslow bootup window 10 maybelot bloatwar uninstally get payygwupplain jane looksth screen resolut poor hdkeyboard easi use night low lightsuggest upgradego ssd 120 gb amazon 25kram need boost 8gb maybescreen replac fhddo may leav light behindal look loaptop surf web weekend offic work play game ocassion want budget laptop go sure disappointed\n Negative 186 net light satisfied product.rest doubts amd one deal clincher festival price point.prostotal value money ports available dvd rwthe ryzen good problems that- comparable i5 imho videos games smoothly4 gb ram enough- less w10the key board touchpad convinient loud backup 2.5hrs cell onlyslow bootup- windows maybelot bloatware pay(ygwup)plain jane looksthe screen resolution poor- hdkeyboard easy night/ low lightsuggestions upgradego ssd -120 gb amazon boost gb replacement light behind!all loaptop web weekend office work games budget laptop
750 i bought this laptop for my sis birthday,before battery dead my experience with this laptop!!1.AMD RYZEN 3 is good for light gaming, editing and for browsing,and watching movies or online shows.2.BATTERY BACKUP:- if you are gaming give you 1 hour battery backup.document editing or video editing give you almost1:30 to 2 hr,and for browsing give you 3 to 4 hr and last watching online movies give you 4 hr,and watching downloaded movies gives to battery life of 5 hr. !!BEWARE!! who is planning to buy this laptop after seeing 13 hour battery backup.3:-DISPLAY is the main con of this laptop..ok ok type display,only hd(720p) in 2018.4:-SOUND:- sound output of the machine is good but I'm using DFX ENHANCER,with DFX enhancer sound output is great.5:- PERFORMANCE:-over all laptop performed well if you add m.2 ssd (I added samsung evo 860 evo) for better performance and more 4 GB or more ram(1 extra ram slot available).I added (8+8=16gb)crucial ram coz system supports dual channel ram.after upgrade laptop boot time is drastically reduced from 2 minute to 8 sec...GAMING experience with this laptop is good like PUBG,CS GO,FORTNITE,FARCRY,BATTLEFIELD 1,ROCKET LEAGE,GTA 5,MORTAL COMBAT and more...overall 3.5 rating out of 5.6:-PROBLEM:-within 5 month laptop battery dead, not charging,HP service also sucks!! complaint register on 10th May but still I'm waiting for technician...they are giving same excuse same time..sir,your problem solved within 2 days but it's already passed more than two days...I already attached pics...so never recommending hp product to anyone else..they are not able to provide services in Hyderabad metro city.. don't buy any hp product... NEVER TRUST A GUY WHO IS TELLING HOW GOOD HP SERVICE....THIS IS EXAMPLE OF HP SERVICE..\n bought laptop si birthdaybefor batteri dead experi laptop1amd ryzen 3 good light game edit browsingand watch movi onlin shows2batteri backup game give 1 hour batteri backupdocu edit video edit give almost130 2 hrand brows give 3 4 hr last watch onlin movi give 4 hrand watch download movi give batteri life 5 hr bewar plan buy laptop see 13 hour batteri backup3display main con laptopok ok type displayonli hd720p 20184sound sound output machin good im use dfx enhancerwith dfx enhanc sound output great5 performanceov laptop perform well add m2 ssd ad samsung evo 860 evo better perform 4 gb ram1 extra ram slot availablei ad 8816gbcrucial ram coz system support dual channel ramaft upgrad laptop boot time drastic reduc 2 minut 8 secgam experi laptop good like pubgc gofortnitefarcrybattlefield 1rocket leagegta 5mortal combat moreoveral 35 rate 56problemwithin 5 month laptop batteri dead charginghp servic also suck complaint regist 10th may still im wait technicianthey give excus timesiryour problem solv within 2 day alreadi pass two daysi alreadi attach picsso never recommend hp product anyon elsethey abl provid servic hyderabad metro citi dont buy hp product never trust guy tell good hp servicethi exampl hp service\n Negative 279 laptop sis birthday battery dead experience laptop!!1.amd good light gaming editing browsing movies online backup:- hour battery backup.document editing video editing almost1:30 hr browsing hr last online movies hr movies battery life hr laptop hour battery backup.3:-display main con laptop ok type display sound output machine good dfx enhancer dfx enhancer sound output great.5:- performance:-over laptop ssd samsung evo evo better performance more gb more ram(1 extra ram slot available).i 8=16gb)crucial ram coz system dual channel ram.after upgrade laptop boot time minute sec gaming experience laptop good pubg cs fortnite farcry battlefield 1,rocket leage combat overall rating month laptop battery dead hp service complaint register 10th technician same excuse same time sir problem days more days pics hp product able services hyderabad metro city hp product guy good hp service example hp service
751 I got this laptop for a steal. I bought it during the Great Indian Sale for only 17000, including 7200 discount in return for my old laptop. It had decent performance, but upgrading ram to 8gb has been worth every rupee. I am able to play graphic intense game like GTA V with almost zero lag or frame drops. If you're a student like me, who games occasionally and needs a laptop for browsing and general usage, go for it. However I would suggest that you wait for a sale or a better offer.\n got laptop steal bought great indian sale 17000 includ 7200 discount return old laptop decent perform upgrad ram 8gb worth everi rupe abl play graphic intens game like gta v almost zero lag frame drop your student like game occasion need laptop brows gener usag go howev would suggest wait sale better offer\n Positive 94 laptop steal great indian sale discount return old laptop decent performance ram gb worth rupee able graphic intense game gta v lag frame drops student laptop browsing general usage sale better offer
752 Inspite of increasing the RAM to 8 GB, the speed of the machine has not improved. It's irritating to work on this laptop even for half an hour. Damn slow, Display gets freezed, opening new tab takes time..etc etc. It also have a problem of charging. It doesn't get charged while the lid is in open position. Everytime you have to put the machine in sleep mode to charge the battery. I don't know how and why Amazon sells such junk laptop. Since the replacement window is gone, could not change it. Waste of money.\n inspit increas ram 8 gb speed machin improv irrit work laptop even half hour damn slow display get freez open new tab take timeetc etc also problem charg doesnt get charg lid open posit everytim put machin sleep mode charg batteri dont know amazon sell junk laptop sinc replac window gone could chang wast money\n Negative 95 inspite ram gb speed machine laptop hour slow display new tab time problem lid open position everytime machine sleep mode battery amazon such junk laptop replacement window waste money
753 Received my laptop. It turned on once fine but after that its not booting up.when i start the laptop cpu fan is spinning at full speed from the first moment and screen is remaining black. Won't even boot into bios. And also i checked for warranty on hp website, it's only showing 9 months remaining of warranty instead of 1 year. So i think seeler tryed to sell the defective returned product to me. Very disappointed.\n receiv laptop turn fine boot upwhen start laptop cpu fan spin full speed first moment screen remain black wont even boot bio also check warranti hp websit show 9 month remain warranti instead 1 year think seeler tri sell defect return product disappointed\n Negative 76 laptop fine up.when laptop cpu fan full speed first moment screen black bios warranty hp website months warranty year seeler defective product disappointed
754 Had a harrowing time handling manufacturer and seller problems, why can't Amazon handle the warranty issues, the day the product order is placed, seller send information to manufacturer for updating the warranty. it took me 10 days for warranty update.battery is poor, display is fine, am hoping that with added RAM, it'd perform decent, currently its S.................L................O...................W, don't know how it'd handle gaming as mentioned in earlier reviews.HP customer care is also in the race for worst performance race along side IFB, Samsung, Morphy Richards and others\n harrow time handl manufactur seller problem cant amazon handl warranti issu day product order place seller send inform manufactur updat warranti took 10 day warranti updatebatteri poor display fine hope ad ram itd perform decent current slow dont know itd handl game mention earlier reviewshp custom care also race worst perform race along side ifb samsung morphi richard others\n Negative 87 harrowing time handling manufacturer seller problems warranty issues day product order seller information warranty days warranty update.battery poor display fine ram decent s l w gaming earlier reviews.hp customer care race worst performance race side ifb samsung morphy richards others
755 it is delivered on 17th october and the very same week it become faulty. Complained to HP A technitian came and he is un able to rectify the fault. Again complained and still not attended Constrained to initiate legal steps\n deliv 17th octob week becom faulti complain hp technitian came un abl rectifi fault complain still attend constrain initi legal steps\n Negative 40 17th october same week faulty hp technitian un able fault legal steps
756 I have a YouTube channel and I went abroad trip for like 20 days. I have a good laptop in which I was editing video, but for some reason it stopped working and I only have 3 days left. I searched a lot in mall and Amazon too my budget was so good, because I need some extra money too. Then finally I found this I bought it.Good and fast delivery by Amazon on just next day (Because I have Amazon Prime) my laptop arrived. Battery charging is fast and good if you're using for normal work like typing and browsing. It's handling my editing software's too which is really good for me. Yes it's slow (Of course what you can expect with 28K laptop) but it rendered my 10 min video in just 40-50 mins.One suggestion add extra 4 GB RAM and it will work so good. I was not sure that it will handle latest 2019 editing software's.\n youtub channel went abroad trip like 20 day good laptop edit video reason stop work 3 day left search lot mall amazon budget good need extra money final found bought itgood fast deliveri amazon next day amazon prime laptop arriv batteri charg fast good your use normal work like type brows handl edit softwar realli good ye slow cours expect 28k laptop render 10 min video 4050 minson suggest add extra 4 gb ram work good sure handl latest 2019 edit softwares\n Positive 160 youtube channel trip days good laptop video reason days lot mall amazon budget good extra money it.good fast delivery amazon next day amazon prime laptop battery charging fast good normal work typing browsing editing software good slow course 28k laptop min video mins.one suggestion extra gb ram good sure latest editing software
757 Got it for 24k in a sale.Initially, I was using Lenovo z500 which has i5 and dedicated graphics card and surprisingly this laptop beats it in the benchmark. So I can say for sure that its better choice than i3 based laptops any time.4GB of ram is not enough if you want lag-free performance, I upgraded it with extra 4GB of ram and 120GB SSD and after that programs like Photoshop, Android Studio starts up almost instantly, on HDD it used to take at least minute or so and on my Lenovo, it takes significantly longer. There is no competition between my old i5 rig and this one, Ryzen 3 is owning i5 :DBattery Backup is advertised as 10+ hrs but in the real world use, it is giving me 4-5 hrs of web browsing+programming+video playback. Still best in this range.The screen is not FHD and considering price it was expected, it's good enough. I am not a gamer so can't say about its refresh rate but for my use Screen is not bad for me at least.The keyboard is very good, very good for programmers.Speakers are decent, not too good, not too bad.M.2 Slot is a big plus. Just Install SSD and see this thing blazing through anything and everything you throw at it.Ports: You get plenty of ports, USB ports seemed bit tight though. Addition of USB Type C would have been great.Trackpad is good too.\n got 24k saleiniti use lenovo z500 i5 dedic graphic card surprisingli laptop beat benchmark say sure better choic i3 base laptop time4gb ram enough want lagfre perform upgrad extra 4gb ram 120gb ssd program like photoshop android studio start almost instantli hdd use take least minut lenovo take significantli longer competit old i5 rig one ryzen 3 own i5 dbatteri backup advertis 10 hr real world use give 45 hr web browsingprogrammingvideo playback still best rangeth screen fhd consid price expect good enough gamer cant say refresh rate use screen bad leastth keyboard good good programmersspeak decent good badm2 slot big plu instal ssd see thing blaze anyth everyth throw itport get plenti port usb port seem bit tight though addit usb type c would greattrackpad good too\n Positive 238 24k lenovo z500 i5 dedicated graphics card laptop benchmark sure better choice i3 laptops time.4 gb ram enough lag free performance extra gb ram gb ssd programs photoshop android studio hdd least minute lenovo competition old i5 rig ryzen i5 dbattery backup hrs real world use hrs web browsing+programming+video playback range.the screen fhd price good gamer refresh rate use screen bad keyboard good good programmers.speakers decent good bad.m.2 slot big plus ssd thing it.ports plenty ports usb ports bit tight addition usb type c good
758 Writing review after 7 months of use.Brought it on Great Indian Festival Sale at 23k.I usually use it for Coding and currently using Arch Linux with GNOME 3.32Pros:1. Comes with official Windows 10 Home Lifetime license2. Battery backup is good. Can last for 4 hrs with continuous usage.3. In-Built Speaker sound quality and loudness is good.4. Comes with APU. Compute intensive programs can benefit from it.5. Keys are good. Less noise.6. In-Built Camera Quality is good.7. Supports M.2 SSD. Works concurrently with SATA hard disk.Cons:1. Ram is 3.6 GB. Where Windows 10 use 2.4 GB on standby.2. Hard Disk is slow. So, boot time is long.3. F.16 BIOS update broke support for several Linux Distros.4. Due to new Vega Graphics its hard to set up several Linux Distro.In my opinion this laptop is not recommended for Gaming because of it's limited VRAM.One may reduce boot time by loading the OS in a SSD.Games can be played with a RAM upgrade.\n write review 7 month usebrought great indian festiv sale 23ki usual use code current use arch linux gnome 332pros1 come offici window 10 home lifetim license2 batteri backup good last 4 hr continu usage3 inbuilt speaker sound qualiti loud good4 come apu comput intens program benefit it5 key good less noise6 inbuilt camera qualiti good7 support m2 ssd work concurr sata hard diskcons1 ram 36 gb window 10 use 24 gb standby2 hard disk slow boot time long3 f16 bio updat broke support sever linux distros4 due new vega graphic hard set sever linux distroin opinion laptop recommend game limit vramon may reduc boot time load os ssdgame play ram upgrade\n Positive 160 review months use.brought great indian festival sale arch linux gnome 3.32pros:1 official windows home lifetime license2 battery backup good hrs continuous usage.3 speaker sound quality loudness good.4 apu compute intensive programs it.5 keys good noise.6 camera quality good.7 m.2 ssd sata disk.cons:1 ram gb windows gb standby.2 hard disk slow boot time long.3 f.16 bios update support several linux distros.4 new vega graphics hard several linux distro.in opinion laptop gaming limited vram.one boot time os ssd.games ram upgrade
759 I purchased this laptop for 22k after exchanging my old sony viao for the value of 5.5k. What attracted me the most to this laptop was that the extra RAM and M.2 slots with which we can upgrade both.I never really believed in the claim of battery life to be 13 hours. Those who did are those who i consider naive. It lasts for around 3-4 hours of continuous use which i think is fair enough.Day to day apps like MS word and ppt and pdf readers are working perfectly fine as of now. My old sony had become really slow in opening those apps.However, my only gripe as of now is its horrendous display. The screen resolution and viewing angle is pathetic. If you like HD stuffs, please don't bother with this laptop. The screen is not that immersive and over that it is highly reflective, so you can't use it outside in daylight.As a budget option, it is ok, and remember, there is this option to upgrade to SSD and upgrade the RAM.\n purchas laptop 22k exchang old soni viao valu 55k attract laptop extra ram m2 slot upgrad bothi never realli believ claim batteri life 13 hour consid naiv last around 34 hour continu use think fair enoughday day app like ms word ppt pdf reader work perfectli fine old soni becom realli slow open appshowev gripe horrend display screen resolut view angl pathet like hd stuff pleas dont bother laptop screen immers highli reflect cant use outsid daylighta budget option ok rememb option upgrad ssd upgrad ram\n Positive 175 laptop 22k old sony viao value 5.5k most laptop extra ram m.2 slots both.i claim battery life hours naive hours continuous use fair enough.day day apps ms word ppt pdf readers old sony slow apps.however only gripe horrendous display screen resolution angle pathetic hd stuffs laptop screen immersive reflective budget option ok option ssd ram
760 I am using it for for day to day task. It is exactly as i expected. Upgrades I suggest -1. M.2 SSD - will reduce boot time.2. Another 4GB Ram - will reduce lag.With these two upgrades, It will feel like an XPS or Macbook.If you do not have any requirement related to gaming or editing videos, then go for it. Ryzen 3 and Vega is actually better than i3.\n use day day task exactli expect upgrad suggest 1 m2 ssd reduc boot time2 anoth 4gb ram reduc lagwith two upgrad feel like xp macbookif requir relat game edit video go ryzen 3 vega actual better i3\n Positive 70 day day task upgrades ssd boot time.2 gb ram lag.with upgrades xps macbook.if requirement gaming videos ryzen vega better i3
761 Initially, this was a very decent laptop. After a month of use, it began to slow down drastically. I make it a point to remove all my files every week or so onto an external hard disk to keep the laptop as empty as possible. Even after doing this, it seems to be slowing down gradually. I wouldn't think this is a very long-life kind of laptop. Have even reinstalled the OS on the laptop. It solved the problem for a about a week and then went back to its usual slow self.\n initi decent laptop month use began slow drastic make point remov file everi week onto extern hard disk keep laptop empti possibl even seem slow gradual wouldnt think longlif kind laptop even reinstal os laptop solv problem week went back usual slow self\n Negative 93 decent laptop month use point files week external hard disk laptop empty possible long life kind laptop os laptop problem week usual slow self
762 Too much slow.. Cant even open google chrome in time.. Unable to update the windows in this laptop.Even replacement is not working properly.. Don't waste money go for Asus or Lenovo instead of HP.\n much slow cant even open googl chrome time unabl updat window laptopeven replac work properli dont wast money go asu lenovo instead hp\n Neutral 34 slow google chrome time unable windows laptop.even replacement money asus lenovo hp
763 First of all it isself not a complete laptop but it gives you options to make it a good machine. Which you will not get on other laptops under this price.Hardrive is extremly slow. Though it shows it 5400rpm but blevive it works like a 10 years old harddrive worls.Boot is extreamy slow. Takes around 1 minute to turned on completely. (i have. Removed AV and HP product software which comes preinstalled)Copy process is also slow.Good part is : you have M.2 slot. So you can M.2 SSD hardrive for OS and believe me you will see more than 10 times difference in boot time as compared to his own disk.Second good thing is that it has 2 memory slots where you can add up to 16gb memory. I small problem which i noticed is that the memory is ddr4 ram with 2666mhz which higher than what they have mentioned in to the specification. and if you are planning to upgrade memory parallely then please buy a compatible memory.Rest everything seems to be fine.\n first isself complet laptop give option make good machin get laptop pricehardr extremli slow though show 5400rpm bleviv work like 10 year old harddriv worlsboot extreami slow take around 1 minut turn complet remov av hp product softwar come preinstalledcopi process also slowgood part m2 slot m2 ssd hardriv os believ see 10 time differ boot time compar disksecond good thing 2 memori slot add 16gb memori small problem notic memori ddr4 ram 2666mhz higher mention specif plan upgrad memori paral pleas buy compat memoryrest everyth seem fine\n Positive 174 complete laptop options good machine other laptops price.hardrive slow blevive years old harddrive worls.boot extreamy slow minute av hp product software preinstalled)copy process slow.good part m.2 slot hardrive os more times difference boot time own disk.second good thing memory slots gb memory small problem memory ram 2666mhz higher specification memory compatible memory.rest fine
764 I just want to tell you that my laptop is not opening properly it takes a lot of time to open ...i think there is some problem in the processor.. So I just want you to replace it and give me another or return it.. I have purchased it on1 June and it contains 1year warranty it's within the warranty period.. Plz help me\n want tell laptop open properli take lot time open think problem processor want replac give anoth return purchas on1 june contain 1year warranti within warranti period plz help me\n Positive 64 laptop lot time problem processor on1 june warranty warranty period
765 I ordered this laptop on 14th and received it on 19th. So average speed of delivery. Now as far as laptop is concerned,it is top notch as long as you dont have sky rocketing expectations.. This is the best laptop below 30k.Pros:1-Ryzen 3 is pretty fast in CPU performance and miles ahead of intel UHD 620/630 in GPU performance.2-Handles all the regular work very well, plays 4k video in youtube without any stutter. I use it for day to day purpose.3-It can handle gaming quite well(at 720p obviously) if you add another 4/8gb of ram as 4gb ram is quite low for playing recent games. 4gb ram is not even adequate for windows 10 nowdays ,leave aside gaming. So if you want good stutter free performance, get atleast extra 4gb ram.4-I have used it for emulation purpose as well and have got very good performance in pcsx2 & cemu( both of which are very cpu intensive). Intel doesnt play pcsx2/cemu well enough even at lowest settings. Intel gpu is not supported by cemu. So if you are into playing retro games and have a limited budget,this is your best budget option.5- Its very premium looking laptop with sparkling black finish.6-Has two USB 3.1 ports which provide very fast transfer speed.7-Has M.2 port(which is much faster than HDD) for upgrading storage which i am planning to do. Shifting the OS to M.2 will give serious boost in performance. Most budget laptop dont have this facility.8-Metallic finish around keyboard which gives it premium look.9-Pretty loud speakers10-No heating(gets just little warm on full load)11-Good screen12-Not very heavy- its 2kg which isnt much considering that its a 15.6 inch screen.13-Charger is very light weight. It becomes important when you are carrying it daily for 1 hour on your back.Cons-1-Pathetic webcam, but thats normally found in most laptop. This is one thing i dont understand that why manufacturers dont add good webcam. Nowdays we have 20-24 megapixel cam in mobiles, so why not add a good webcam in laptop?2-Not so great viewing angles on screen. Also screen is very reflective,so causes problem in day time as lots of reflections create distraction.3- Maybe this problem is with my unit only but USB ports are very tight. I have to struggle to insert or remove any USB cable etc.4-Not soo great battery life as has been claimed in the description. Even when i have used in most economic way possible , i get around 6-7 hours battery life. Though it is much better than normal laptop, but still much less than claimed 13 hrs battery life. Maybe it can be acheived in future by optimization of BIOS or driver.5-Wobbling of screen when it is carried in hand.Overall, its a fantastic laptop for the price. You will be pretty happy if you dont have skyrocketing expectations.\n order laptop 14th receiv 19th averag speed deliveri far laptop concernedit top notch long dont sky rocket expect best laptop 30kpros1ryzen 3 pretti fast cpu perform mile ahead intel uhd 620630 gpu performance2handl regular work well play 4k video youtub without stutter use day day purpose3it handl game quit wellat 720p obvious add anoth 48gb ram 4gb ram quit low play recent game 4gb ram even adequ window 10 nowday leav asid game want good stutter free perform get atleast extra 4gb ram4i use emul purpos well got good perform pcsx2 cemu cpu intens intel doesnt play pcsx2cemu well enough even lowest set intel gpu support cemu play retro game limit budgetthi best budget option5 premium look laptop sparkl black finish6ha two usb 31 port provid fast transfer speed7ha m2 portwhich much faster hdd upgrad storag plan shift os m2 give seriou boost perform budget laptop dont facility8metal finish around keyboard give premium look9pretti loud speakers10no heatingget littl warm full load11good screen12not heavi 2kg isnt much consid 156 inch screen13charg light weight becom import carri daili 1 hour backcons1pathet webcam that normal found laptop one thing dont understand manufactur dont add good webcam nowday 2024 megapixel cam mobil add good webcam laptop2not great view angl screen also screen reflectiveso caus problem day time lot reflect creat distraction3 mayb problem unit usb port tight struggl insert remov usb cabl etc4not soo great batteri life claim descript even use econom way possibl get around 67 hour batteri life though much better normal laptop still much less claim 13 hr batteri life mayb acheiv futur optim bio driver5wobbl screen carri handoveral fantast laptop price pretti happi dont skyrocket expectations\n Positive 468 laptop 14th 19th average speed delivery laptop top notch sky expectations best laptop cpu performance miles intel uhd 620/630 gpu performance.2-handles regular work video youtube stutter day day purpose.3-it well(at 720p gb ram gb ram low recent games gb ram adequate windows nowdays gaming good stutter free performance atleast extra gb ram.4-i emulation purpose good performance pcsx2 cemu cpu intensive intel pcsx2 cemu lowest settings intel gpu cemu retro games limited budget best budget option.5- very premium laptop black usb ports fast transfer m.2 port(which faster hdd storage os m.2 serious boost performance most budget laptop facility.8-metallic finish keyboard premium look.9-pretty loud speakers10-no heating(gets little warm full screen12-not heavy- kg considering inch screen.13-charger light weight important hour back.cons-1-pathetic webcam most laptop thing manufacturers good webcam nowdays megapixel cam mobiles good webcam laptop?2-not great angles screen screen reflective problem day time lots reflections distraction.3- problem unit usb ports tight usb cable etc.4-not soo great battery life description most economic way possible hours battery life better normal laptop less hrs battery life future optimization bios driver.5-wobbling screen hand.overall fantastic laptop price happy expectations
766 It's been a couple of weeks since I got this laptop and so far so good touch wood. After 8 years of using a Mac I decided to return back to HP with my first time using Windows 10. I must say I am impressed with its performance so far. The good thing is I can upgrade the RAM which I plan on doing soon simply because I'm a tech geek but in no way does the installed RAM make the laptop lag in any way. The Ryzen 3 processor is also nice and slick too. Just make sure to routinely update the preinstalled device drivers and in order to make sure you get all the device improvements. Overall it's good for work, gaming, web development etc. The battery is quite decent too for such a lightweight lappy.\n coupl week sinc got laptop far good touch wood 8 year use mac decid return back hp first time use window 10 must say impress perform far good thing upgrad ram plan soon simpli im tech geek way instal ram make laptop lag way ryzen 3 processor also nice slick make sure routin updat preinstal devic driver order make sure get devic improv overal good work game web develop etc batteri quit decent lightweight lappy\n Positive 138 couple weeks laptop good touch wood years mac hp first time windows impressed performance good thing ram tech geek way ram laptop lag way ryzen processor nice slick sure device drivers order sure device improvements good work gaming web development battery decent lightweight lappy
767 Due to less Video RAM i cant even work with Adobe Photoshop CC 2018 it shows no enough VRAM..it shows pure performance in Asphalt 9..Build for midrange games..even high range with a decent gaming performance.. battery life is almost as mentioned if there is no network connected..it doesnt feel much heavy..i bought it in great indian festival sale..Got for 23990..for that rate its awsome..im sad about that VRAM issue..\n due less video ram cant even work adob photoshop cc 2018 show enough vramit show pure perform asphalt 9build midrang gameseven high rang decent game perform batteri life almost mention network connectedit doesnt feel much heavyi bought great indian festiv salegot 23990for rate awsomeim sad vram issue\n Positive 69 less video ram adobe photoshop cc enough vram pure performance asphalt midrange games high range decent gaming performance battery life network heavy great indian festival sale rate awsome im sad vram issue
768 One month...good till now...the disk is on the slower side.....installed the WD double notch ssd and added 8 gb kingston 2666 ram.... Now working like a charm....still the total costed below 30k in total. Hope the inside picture help\n one monthgood till nowth disk slower sideinstal wd doubl notch ssd ad 8 gb kingston 2666 ram work like charmstil total cost 30k total hope insid pictur help\n Positive 39 month good disk slower side wd double notch ssd gb kingston charm total 30k total inside picture help
769 Ordered this laptop on the 24th Dec and got it on Christmas Morning!I was expecting the performance to be on the slower side considering that it only has a 4GB RAM on it, but I am pleasantly surprised to see that it is quite fast. However, I will still add another 8GB RAM to make it a total of 12GB, cause that more RAM the better it is.Will also upgrade to the 240GB WD Green M.2 SSD and migrate the OS to it, cause it will definitely boost the performance.Having said all that, I would certainly recommend this laptop cause right out of the box it is great and good value for money. Plus it is highly upgradeable as compared to other laptops in it category and price point.AMD Rocks!!!\n order laptop 24th dec got christma morningi expect perform slower side consid 4gb ram pleasantli surpris see quit fast howev still add anoth 8gb ram make total 12gb caus ram better iswil also upgrad 240gb wd green m2 ssd migrat os caus definit boost performancehav said would certainli recommend laptop caus right box great good valu money plu highli upgrad compar laptop categori price pointamd rocks\n Positive 130 laptop 24th dec christmas morning!i performance slower side gb ram surprised fast gb ram total better is.will green m.2 ssd os performance.having laptop cause box great good value money upgradeable other laptops category price point.amd rocks
770 It's a very good looking laptop at this price with ryzen 3 onboard.Also there's Windows 10 and Ms Office 2016 included.Performance wise its acceptable at the given price point.. Day to day tasks are handled easily with minimal or no hiccups.Upgrading to extra RAM and SSD should help in a much better performance for sure.The battery is pretty average which is okay considering the price point.. Should last you between 3-4 hours on moderate usage.Display is antiglare so no strain on eyes or headaches expected for prolonged sessions.Keyboard is tactile but the placements of keys could have been better.Installed Pub G lite and played one match... It is playable but don't expect buttery smooth performance.. Upgrading ram to 8Gb should help.Dual speakers are adequately loud for a closed room.. The volume from headphone jack is amazing.Overall a pretty solid offering at the current price of RS 28900.. If offered 2k discount during sales then it will be a killer deal.Surely recommended to upgrade by investing 5-6K to SSD and higher RAM.. Will be doing so in diwali time and will post my second thoughts then.\n good look laptop price ryzen 3 onboardalso there window 10 ms offic 2016 includedperform wise accept given price point day day task handl easili minim hiccupsupgrad extra ram ssd help much better perform sureth batteri pretti averag okay consid price point last 34 hour moder usagedisplay antiglar strain eye headach expect prolong sessionskeyboard tactil placement key could betterinstal pub g lite play one match playabl dont expect butteri smooth perform upgrad ram 8gb helpdual speaker adequ loud close room volum headphon jack amazingoveral pretti solid offer current price rs 28900 offer 2k discount sale killer dealsur recommend upgrad invest 56k ssd higher ram diwali time post second thought then\n Positive 185 good looking laptop price ryzen onboard.also windows ms office included.performance wise acceptable price point day day tasks minimal hiccups.upgrading extra ram ssd better performance battery average okay price point hours moderate usage.display antiglare strain eyes headaches prolonged sessions.keyboard tactile placements keys pub g lite match playable buttery smooth performance ram gb help.dual speakers loud closed room volume headphone jack amazing.overall solid offering current price rs discount sales killer 6k ssd higher ram diwali time second thoughts
771 I had high expectations about this. After reading all those good reviews I decided to go with It. But Its terrible. First thing that I notice is the display. Its plain bad. Not at all HD as described. It looks like 360p at the most.The pages are all pixelate. The display really looks like what people would have used in the eighties, when Steve Jobs and such visioneries were working on it. But It seems this product is yet to move on from that and its stuck to this Damn which might have looked OK 35 years back. Its still under 10 days replacement criteria but the Guys at amazon are not responding well. Then I discovered the second problem, this time one of the keys on keyboard does not seem to work and when I checked, Its damaged and what looks like a hardware issue. When I contacted amazon, I was told to update the drivers from HP site. Tell me, how can you fix what is clearly a Hardware issue by downloading softwares!!! This IS THEIR SUPPORT or if you may call it that.Yet I installed all the drivers and still hardly any improvement.My Question is - Amazon, What is this!I have been buying since 2015 using this ONE account, thats more than 3 years, almost overlaps with Amazon's beginning here in India. SO I do think I deserve better. Thats It\n high expect read good review decid go terribl first thing notic display plain bad hd describ look like 360p mostth page pixel display realli look like peopl would use eighti steve job visioneri work seem product yet move stuck damn might look ok 35 year back still 10 day replac criteria guy amazon respond well discov second problem time one key keyboard seem work check damag look like hardwar issu contact amazon told updat driver hp site tell fix clearli hardwar issu download softwar support may call thatyet instal driver still hardli improvementmi question amazon thisi buy sinc 2015 use one account that 3 year almost overlap amazon begin india think deserv better that it\n Positive 243 high expectations good reviews terrible first thing display bad hd most.the pages pixelate display people eighties steve jobs such visioneries product stuck damn ok years days replacement criteria guys amazon second problem time keys keyboard hardware issue amazon drivers hp site hardware issue softwares support drivers improvement.my question amazon account more years amazon beginning india
772 As reviews say it IS slow. My 2006 build Compaq (XP OS) with just 256 mb RAM used to load image file in millisecond. This one with 4 GB RAM takes about 3 to 5 seconds. That XP OS was of CD size (less than 700 mb). This one's security update alone went to 6 GB. These days the OPERATING SYSTEMS are heavier and slower. It seems. Must be because of heavy protection mechanisms. I am just a computer user not a technical expert. I don't know what is what. Some said upgrading RAM to more GB speeded it up. For less than 20,000 this laptop is a good buy. Battery lasts upto 6 hours +. Mc Afee anti virus is 1 month free. With just ₹600 you can buy for 1 year ( choose one device option). Win 10 has "lifetime validity"USB PORTS TOO CLOSE ??? I CANNOT BELIEVE THIS. SUCH SIMPLE FACTOR THAT HAS WENT UNNOTICED BY HP AND NO FEEDBACK COMPLAINTS ABOUT USB PORTS PLACED TOO CLOSE ON ALL LAPTOPS, ALL THESE YEARS. On the left side, this laptop has 2 usb ports placed too close. You can never put two otg sandisk flash drives at the same time. The first one will block the entry of second flash drive. How they put 2 usb ports that close is a matter of concern and why they were not pointed out by possibly millions of users worldwide. Designers must have separated two usb ports atleast by two or three inches.Make sure to switch on the option not to install any software from outside the Microsoft store. One unauthorized program (not in Microsoft store), can download more programs by itself and "stall" the already slow laptop. They happen in background, you don't know what is happening. For two or three days, I suffered moving to every level in minutes time not seconds, switching system off by force pressing the power button on laptop and again restarting. I UNINSTALLED ALL PROGRAMS FROM OUTSIDE THE MICROSOFT STORE. This made the system workable. There is nothing wrong with MCafee anti virus program. It only protects. There must be a strong reason why HP itself recommends MCafee anti virus.There is no light indication that the laptop is "ON" on keyboard. One must press either the caps lock button or mute button to remind that the lap is running. These days people are preoccupied and absent minded. They tend to forget whether they switched the lap off or whether it is "on". The screen display goes blank after few minutes idle period, one must look sideways on the right to see if the light is glowing but most often they don't do it, causing the lap to be running inside for no good reason. A light on the keyboard (near spacebar) would be better for all laptops\n review say slow 2006 build compaq xp os 256 mb ram use load imag file millisecond one 4 gb ram take 3 5 second xp os cd size less 700 mb one secur updat alon went 6 gb day oper system heavier slower seem must heavi protect mechan comput user technic expert dont know said upgrad ram gb speed less 20000 laptop good buy batteri last upto 6 hour mc afe anti viru 1 month free ₹600 buy 1 year choos one devic option win 10 lifetim validityusb port close cannot believ simpl factor went unnot hp feedback complaint usb port place close laptop year left side laptop 2 usb port place close never put two otg sandisk flash drive time first one block entri second flash drive put 2 usb port close matter concern point possibl million user worldwid design must separ two usb port atleast two three inchesmak sure switch option instal softwar outsid microsoft store one unauthor program microsoft store download program stall alreadi slow laptop happen background dont know happen two three day suffer move everi level minut time second switch system forc press power button laptop restart uninstal program outsid microsoft store made system workabl noth wrong mcafe anti viru program protect must strong reason hp recommend mcafe anti virusther light indic laptop keyboard one must press either cap lock button mute button remind lap run day peopl preoccupi absent mind tend forget whether switch lap whether screen display goe blank minut idl period one must look sideway right see light glow often dont caus lap run insid good reason light keyboard near spacebar would better laptops\n Positive 477 reviews slow build compaq xp os mb ram image file millisecond one gb ram seconds xp os cd size less mb one security update gb days operating systems heavier slower heavy protection mechanisms computer user technical expert ram gb less laptop good buy battery upto hours mc afee anti virus month free year device option win lifetime validity"usb ports such simple factor unnoticed hp feedback complaints usb ports laptops years left side laptop usb ports otg sandisk flash drives same time first entry second flash drive usb ports matter concern millions users designers usb ports atleast inches.make sure option software microsoft store unauthorized program microsoft store more programs stall slow laptop background days level minutes time seconds system force power button laptop programs microsoft store system workable wrong mcafee anti virus program strong reason hp mcafee anti virus.there light indication laptop keyboard caps button mute button lap days people preoccupied absent minded lap screen display blank few minutes idle period right light glowing lap good reason light keyboard spacebar better laptops
773 Worst laptop ever I have seen in my life.Please don't buy it...When you right click and click NEW , it immediately hangs and then starts working after 10 - 15 mins............Very bad, on every aspect ,neither good for MS Office use nor for anything else.completely Useless laptop ...... And even Amazon refused to Return or replace the laptop......I have done everything like , updating drivers,Updating software,dial clean up,etc. That amazon agents told me but still this laptop is very slow. This laptop hangs 100 times in a day\n worst laptop ever seen lifepleas dont buy itwhen right click click new immedi hang start work 10 15 minsveri bad everi aspect neither good ms offic use anyth elsecomplet useless laptop even amazon refus return replac laptopi done everyth like updat driversupd softwaredi clean upetc amazon agent told still laptop slow laptop hang 100 time day\n Negative 88 worst laptop life.please new mins bad aspect good ms office use useless laptop amazon laptop drivers software amazon agents laptop slow laptop times day
774 First day review. Slow startup. Took almost an hour to do initial set up. Overall there is a slowness. Opening apps and settings taking longer than usual.Good timely delivery by amazon.Will use for some days and try.————Review after 5 days:Slowness continuesTakes lot of time while performing certain basic tasks. Ex below1. Right click from desktop and opening ‘New’ submenu takes around 30 seconds2. Opening multiple browser tabs in chrome makes system very slow3. Settings tab takes around 20 secs to open.Overall not satisfied with the performanceThe positive is battery life.======further update : I have now started facing intermittent wifi disconnection issue———-After using for quite some time now, I am giving a 1 star now as there is no option for a zero star. Utterly disappointed with HP. This is the 7th laptop in my life and the worst one. Agree that the price is less but that does not mean that you can compromise on quality. Still the laptop is dead slow. Takes over a 2 minutes to just open google chrome.NOT AT ALL RECOMMENDED\n first day review slow startup took almost hour initi set overal slow open app set take longer usualgood time deliveri amazonwil use day try————review 5 daysslow continuestak lot time perform certain basic task ex below1 right click desktop open ‘new’ submenu take around 30 seconds2 open multipl browser tab chrome make system slow3 set tab take around 20 sec openoveral satisfi performanceth posit batteri lifefurth updat start face intermitt wifi disconnect issue———aft use quit time give 1 star option zero star utterli disappoint hp 7th laptop life worst one agre price less mean compromis qualiti still laptop dead slow take 2 minut open googl chromenot recommended\n Negative 175 first day review slow startup hour initial slowness apps settings usual.good timely delivery amazon.will use days days slowness lot time certain basic tasks ex below1 right click desktop new submenu seconds2 multiple browser tabs chrome system slow3 settings tab secs open.overall satisfied performancethe positive battery update intermittent disconnection issue -after time star option star disappointed hp 7th laptop life worst price less quality laptop slow minutes google chrome.not
775 One practically useless laptop that's good for literally nothing. Will freeze with just 5 tabs in Chrome loading low graphic trading charts. Not good for even using as a word processor - 3 word documents will cause it to continuously freeze. Losing so much time everyday because of this. Made a mistake because I was on a budget. Even if you don't have money and buy this as a budget laptop, please save and buy a better configuration or pay more and use EMI for payback.\n one practic useless laptop that good liter noth freez 5 tab chrome load low graphic trade chart good even use word processor 3 word document caus continu freez lose much time everyday made mistak budget even dont money buy budget laptop pleas save buy better configur pay use emi payback\n Positive 87 useless laptop good tabs chrome low graphic trading charts good word processor word documents much time mistake budget money budget laptop better configuration more emi payback
776 Laptop is good but dead slow RAM 4g not enogh.HP should describe required RAM for normal operation.Only started working for normal use after diabling disk write coach and uninstallatio of virus software provided with laptop.. can use laptop for day to day use. Only RAM upgrade to 8gb wil help laptop to normal.\n laptop good dead slow ram 4g enoghhp describ requir ram normal operationonli start work normal use diabl disk write coach uninstallatio viru softwar provid laptop use laptop day day use ram upgrad 8gb wil help laptop normal\n Positive 53 laptop good dead slow ram g enogh.hp ram normal normal use disk write coach uninstallatio virus software laptop laptop day day upgrade gb wil help laptop normal
777 This. Product. Is. So. Much. Good. Because. Its. Like. A. Gaming. LaptopAnd. It. Is. Supporting. To. Bright\n product much good like game laptopand support bright\n Positive 31 product much a. gaming laptopand bright
778 I'm not a blogger to write about something so intensely to be honest I'll write this one. It's jot that this is the first laptop I've used nor will be the last but I've very bad experience. It says AMD with high speed and so many other positive points but trust me. You'll regret. I replaced twice thinking manufacturing issue but noop. The laptop and the processesor itself is worst. I'll freez you screen, lags, hangs and takes several minutes to start your computer. If u click a start menu itll take 30 sec to open. Don't mention opening 3rd party app. It'll take forever or freezes and the pc will restart itself. Once u connect with Bluetooth device than be ready to press the power button because after 5 minutes your pc hangs and mouse cursor freez and nothing can be done accept pressing power button directly. Took a help from Amazon technicians, Hp technicians but nothing could be done. There are no number of points to mention what is problems. But there are unnamed problems I've never come accross in my computer experience.If u don't truust me in this than later you have no points of getting regret. Don't buy ryzen AMD. Go to intel cores\n im blogger write someth intens honest ill write one jot first laptop ive use last ive bad experi say amd high speed mani posit point trust youll regret replac twice think manufactur issu noop laptop processesor worst ill freez screen lag hang take sever minut start comput u click start menu itll take 30 sec open dont mention open 3rd parti app itll take forev freez pc restart u connect bluetooth devic readi press power button 5 minut pc hang mous cursor freez noth done accept press power button directli took help amazon technician hp technician noth could done number point mention problem unnam problem ive never come accross comput experienceif u dont truust later point get regret dont buy ryzen amd go intel cores\n Negative 208 blogger honest one jot first laptop last bad experience amd high speed many other positive points manufacturing issue noop laptop processesor worst screen lags hangs several minutes computer start menu sec 3rd party app freezes pc bluetooth device ready power button minutes pc cursor freez power button help amazon technicians hp technicians number points problems unnamed problems accross computer u points regret ryzen amd intel cores
779 Very worst product, I just used one da and I updated all the drivers, but still the laptop is very slow and the major thing is I got dot in the display... Which is really very major problem... Display quality is too bad... And now the TouchPad is not working.... I really didn't expect this from HP...\n worst product use one da updat driver still laptop slow major thing got dot display realli major problem display qualiti bad touchpad work realli didnt expect hp\n Negative 57 worst product da drivers laptop slow major thing dot display major problem display quality bad touchpad hp
780 Not deserves even a star it's normally takes 7 minutes to start , I am professional my usage limited to browser, Ms word and watching videos or music though it's take too much time.Upgrading is must or else you feel working in grandpa age also not that easy in this upgrading removing panel is daunting task.My core 2 duo starts and work faster than this , unfortunately I purchased 2 Laptops seeing there endorse of 8 hrs battery etc and it's a big trap.Such big international company HP not cared about it's growing brand in market or trusted customer, just for the sake of selling this junks troubling customers.Go for any other laptops in range of 15k instead of this you will be more satisfied instead of wasting valuable time on this junk.\n deserv even star normal take 7 minut start profession usag limit browser ms word watch video music though take much timeupgrad must els feel work grandpa age also easi upgrad remov panel daunt taskmi core 2 duo start work faster unfortun purchas 2 laptop see endors 8 hr batteri etc big trapsuch big intern compani hp care grow brand market trust custom sake sell junk troubl customersgo laptop rang 15k instead satisfi instead wast valuabl time junk\n Positive 133 star minutes professional usage browser ms word videos music much time.upgrading grandpa age upgrading panel core duo starts work laptops endorse hrs battery big trap.such big international company hp brand market customer sake junks troubling other laptops range 15k satisfied valuable time junk
781 Very disappointing with the HP laptop . Hard disk got crashed with in year where the laptop usage was minimalThis product already a problem with Hard disk was crashed within a year of purchase. Which is very disappointing. And it was told that inner boards of the laptop are very old boards, when checked with hardware repair person. But actually we have bought a new brand device from Amazon , also this laptop comes with one warranty which is till November 2019,that means the date of purchase was in November 2018 , but the warranty says only till September when with HP company. Miss match of warranty dates\n disappoint hp laptop hard disk got crash year laptop usag minimalthi product alreadi problem hard disk crash within year purchas disappoint told inner board laptop old board check hardwar repair person actual bought new brand devic amazon also laptop come one warranti till novemb 2019that mean date purchas novemb 2018 warranti say till septemb hp compani miss match warranti dates\n Negative 110 disappointing hp laptop hard disk year laptop usage minimalthis product problem hard disk year purchase disappointing inner boards laptop old boards hardware repair person new brand device amazon laptop warranty november date purchase november warranty september hp company miss match warranty
782 Not working properly and speed is very slow. Battery life is very short.Amazon is not helping me to return this product.\n work properli speed slow batteri life shortamazon help return product\n Positive 21 speed slow battery life short.amazon product
783 On registration on hp site it show 10 months warranty instead of 1 year. Product already registered on hp website before 2 months. How strange\n registr hp site show 10 month warranti instead 1 year product alreadi regist hp websit 2 month strange\n Negative 25 registration hp site months warranty year product hp website months strange
784 good laptop in a budget but pretty useless without SSD upgrade and ram expansion. Hangs like anything even with mild browsing and light multitasking .but the good thing is it has m.2 SSD slot and dual channel ram for expansion. UPDATE: BOUGHT SAMSUNG EVO 860 OF RS 3999 AND ADATA DDR4 RAM OF RS1599 FROM AMAZON AND UPGRADED IT. BELEIVE ME THE LAPTOP WORKS LIKE A BREEZE ,THE BOOT TIME IS REDUCED TO 25 SEC FROM 2 MINUETES AND LOADING TIME IS ALSO QUICK. SO WITHOUT RAM EXPANSION AND SSD THIS LAPTOP IS USELESS WEIGHT BUT WITH IT ITS A BEST IN BUDGET SEGMENT\n good laptop budget pretti useless without ssd upgrad ram expans hang like anyth even mild brows light multitask good thing m2 ssd slot dual channel ram expans updat bought samsung evo 860 rs 3999 adata ddr4 ram rs1599 amazon upgrad beleiv laptop work like breez boot time reduc 25 sec 2 minuet load time also quick without ram expans ssd laptop useless weight best budget segment\n Positive 108 good laptop budget useless ssd upgrade expansion hangs mild browsing light multitasking good thing ssd slot dual channel ram expansion update samsung evo rs adata ddr4 ram rs1599 amazon laptop breeze boot time sec minuetes loading time quick ram expansion ssd laptop useless weight best budget segment
785 As most of the points covered earlier - regarding the importance and need to upgrade the ram to 8 gb - else somehow this laptop is much useful ( the OS itself takes close to 3 gb or ram ) - noteworthy I also bought one more Asus laptop same day with intel p - however the battery life and ram usage is much better ( considering its price point and both have same OS / 4gb ram / hdd ) - apart from that I don't see any benefit of this laptop over my other laptop. My usage is usual browsing / movies / bit of office work ( ssh terminals / C programming etc ).However the benefit in gaming is evident - its much better now and doesn't hang/crash.Overall - warranty support is so far good - HP support does hear and try to solve the problem.I guess its imperative that extended warranty needs to be purchased.Hope it helps - Thanks\n point cover earlier regard import need upgrad ram 8 gb els somehow laptop much use os take close 3 gb ram noteworthi also bought one asu laptop day intel p howev batteri life ram usag much better consid price point os 4gb ram hdd apart dont see benefit laptop laptop usag usual brows movi bit offic work ssh termin c program etc howev benefit game evid much better doesnt hangcrashoveral warranti support far good hp support hear tri solv problemi guess imper extend warranti need purchasedhop help thanks\n Positive 163 most points importance ram gb laptop useful os gb noteworthy more asus laptop same day intel p battery life usage better price point same os gb ram hdd benefit laptop other laptop usage usual browsing movies bit office work ssh terminals c programming benefit gaming evident better crash.overall warranty support good hp support problem.i guess imperative warranty thanks
786 got the laptop on sale for 22k after all discounts. seems a good value for money product for regular everyday use (not heavy computing or gaming).mcafee seems to be coming preloaded on a lot of laptops these days and it does eat up a lot of cpu and disk utilization and makes the laptop slow/laggy. need to uninstall mcafee and install an alternative like eset or avast.noticed that it doesn't have an easily removable battery (like how most conventional laptops do). one probably needs to unscrew and remove the entire base to access the battery and other components like the ram and hdd. so i wonder if the battery is easily user replaceable... will know once i open the base panel off in a few days.also wanted to upgrade the RAM, but unable to get the exact ram spec (tried the bios and speccy) and it doesn't show a brand name. i guess i'll have to physically open up the base to get access to the hardware and see what i can do about it.definitely would do much much better with 8 gigs or ram and an ssd.\n got laptop sale 22k discount seem good valu money product regular everyday use heavi comput gamingmcafe seem come preload lot laptop day eat lot cpu disk util make laptop slowlaggi need uninstal mcafe instal altern like eset avastnot doesnt easili remov batteri like convent laptop one probabl need unscrew remov entir base access batteri compon like ram hdd wonder batteri easili user replac know open base panel daysalso want upgrad ram unabl get exact ram spec tri bio specci doesnt show brand name guess ill physic open base get access hardwar see itdefinit would much much better 8 gig ram ssd\n Positive 188 laptop sale 22k discounts good value money product regular everyday use heavy computing gaming).mcafee lot laptops days lot cpu disk utilization laptop slow laggy mcafee alternative eset removable battery most conventional laptops unscrew entire base battery other components ram hdd battery user replaceable base panel few days.also ram unable exact ram spec bios speccy brand name base access hardware it.definitely better gigs ram ssd
787 I purchased this laptop during diwali sale. I have been using this now for more than a month and I find it complete value for money.AMD Ryzen 3 processor is better than Intel Core i3.I even upgraded my RAM to 8GB and now all the processes have become very fast. (At 4 GB RAM also the performance was good).Another advantage is the availability of the M.2 SSD slot. No other laptop in this range has this provision.Overall, I will suggest to go for this laptop.\n purchas laptop diwali sale use month find complet valu moneyamd ryzen 3 processor better intel core i3i even upgrad ram 8gb process becom fast 4 gb ram also perform goodanoth advantag avail m2 ssd slot laptop rang provisionoveral suggest go laptop\n Positive 85 laptop diwali sale more month complete value money.amd ryzen processor better intel core i3.i ram gb processes fast gb ram performance good).another advantage availability ssd slot other laptop range provision.overall laptop
788 It's a very beautiful product from Hp.... I completely fell in love with the device from the first day.... It's light weight.....On the specs front it has decent processor (ryzen 3) and graphics driver. You can play games easily (not high end). It's a good laptop for engineering students and for general purpose daily use. It has also slot for M.2 drive... So in future I'm planning to upgrade...Ram also is 4gb which can b upgraded to 8gb....Overall the product is fantastic for the price ... And I would highly recommend it.\n beauti product hp complet fell love devic first day light weighton spec front decent processor ryzen 3 graphic driver play game easili high end good laptop engin student gener purpos daili use also slot m2 drive futur im plan upgraderam also 4gb b upgrad 8gboveral product fantast price would highli recommend it\n Positive 92 beautiful product hp love device first day light weight specs front decent processor ryzen graphics driver games high end good laptop engineering students general purpose daily use slot m.2 drive future ram gb b 8gb product fantastic price
789 laptop is good as expected. needs 8gb ram for better performance. there is no extra hdd slot fyi. nothing much surprising about this laptop. got very high fps while playing dota 2. very good. Normal battery life(4 hrs) normal weight.\n laptop good expect need 8gb ram better perform extra hdd slot fyi noth much surpris laptop got high fp play dota 2 good normal batteri life4 hr normal weight\n Positive 41 laptop good gb ram better performance extra hdd slot fyi surprising laptop high fps dota good normal battery life(4 hrs normal weight
790 I would like to inform everyone that please please dont buy this product.. I know u are here in need of A cheap and best laptop but this product is really very cheap but this is A worst product, trust me it is far better to buy laptops from their respective stores rather online.. I have bought this product and then I realize why they are selling it for only 19990 it's actual price is 22000 this laptop is an old model of E2 SERIES, so please i request u dont through your money here instead of this you can see it offline ...\n would like inform everyon pleas pleas dont buy product know u need cheap best laptop product realli cheap worst product trust far better buy laptop respect store rather onlin bought product realiz sell 19990 actual price 22000 laptop old model e2 seri pleas request u dont money instead see offlin \n Positive 104 product need cheap best laptop product cheap worst product better laptops respective stores product actual price laptop old model e2 series money offline
791 Overall I'm happy to have this machine. Just one fear I have is the heating issue of this processor. It heats up too much especially when we do multi tasking for little longer duration. I am hopeful that it'll not create any problem for longer run.Its performance is almost equivalent to i3 but graphical performance like medium load gaming works even better on this one than the i3 processor, but heating is a big time problem. If we do multi tasking especially playing games or watching movies or videos for long time then laptop heat up much. Once I had experience weird problem too when it got too much heat it play weird sound for few minutes and then restarted.Battery life is not so good. Yes it'll charge very quickly but it'll exhaust like the other hp machines. The claim of having larger and efficient battery life on this listing page is not true at all.\n overal im happi machin one fear heat issu processor heat much especi multi task littl longer durat hope itll creat problem longer runit perform almost equival i3 graphic perform like medium load game work even better one i3 processor heat big time problem multi task especi play game watch movi video long time laptop heat much experi weird problem got much heat play weird sound minut restartedbatteri life good ye itll charg quickli itll exhaust like hp machin claim larger effici batteri life list page true all\n Positive 157 happy machine fear heating issue processor multi little longer duration hopeful problem longer run.its performance equivalent i3 graphical performance medium load gaming i3 processor heating big time problem multi games movies videos long time heat experience weird problem much heat weird sound few minutes restarted.battery life good other hp machines claim larger efficient battery life page true
792 I bought this laptop during the great Indian sale for 22k, it was delivered fast and well. immediately after delivery, I upgraded its ram to 8gb (as win10 is quite sluggish), and started testing it out.I played the following games on it on low settings.1. pubg mobile (emulator) fps :30-402. csgo fps 30-603. FIFA 18 fps 35-1024. fortnite 33-425. GTA 5 fps 30-456. rocket league fps 907.dota 2 fps 608. dirt rally fps 80-100this shows that it performs very wellbattery charges super fastand drains superfast if you play games , lest it gives long backupdisplay quality is okayspeakers are okoverall good package in 22k\n bought laptop great indian sale 22k deliv fast well immedi deliveri upgrad ram 8gb win10 quit sluggish start test outi play follow game low settings1 pubg mobil emul fp 30402 csgo fp 30603 fifa 18 fp 351024 fortnit 33425 gta 5 fp 30456 rocket leagu fp 907dota 2 fp 608 dirt ralli fp 80100thi show perform wellbatteri charg super fastand drain superfast play game lest give long backupdisplay qualiti okayspeak okoveral good packag 22k\n Positive 105 laptop great indian sale delivery ram gb win10 sluggish out.i games low settings.1 pubg mobile emulator fps csgo fifa fortnite gta rocket league fps 907.dota fps dirt rally 100this wellbattery fastand drains games long backupdisplay quality okayspeakers okoverall good package 22k
793 Good laptop for the price 23000 rupee plus 1000 Amazon cashbacks. So final price 22000 rupees. Good for Ms office and browsing. May not be good for programming using heavy editor like visual studio etc. Light weight, battery backup 5-6 hours with medium brightness. Didn't check gaming and all.\n good laptop price 23000 rupe plu 1000 amazon cashback final price 22000 rupe good ms offic brows may good program use heavi editor like visual studio etc light weight batteri backup 56 hour medium bright didnt check game all\n Positive 49 good laptop price rupee amazon cashbacks final price rupees good ms office browsing good programming heavy editor visual studio light weight battery backup hours medium brightness gaming
794 I bought this laptop as it was very cheap and came with RYZEN 3 processor. I wanted mid-range optimum laptop for all the work including daily use and photoshop and after effects. Due to Microsoft Windows OS the lagging is there, however if you add 8GB more to lap of SODIMM 2400MHZ RAM then 12GB in total would help latop do any work you want without interupting other work and distributin of threads for work is awesome and handelled well by CPU.As I do not play games, I do not know how good the graphics part is, however it helps after effects very much faster than my old laptop. Thankx to HP. Thankx for the seller for this price.\n bought laptop cheap came ryzen 3 processor want midrang optimum laptop work includ daili use photoshop effect due microsoft window os lag howev add 8gb lap sodimm 2400mhz ram 12gb total would help latop work want without interupt work distributin thread work awesom handel well cpua play game know good graphic part howev help effect much faster old laptop thankx hp thankx seller price\n Positive 119 laptop cheap ryzen processor mid - range optimum laptop work daily use photoshop effects microsoft windows lagging more sodimm gb total work other work distributin threads work awesome cpu.as games good graphics part effects old laptop thankx hp thankx seller price
795 Good product with good pricing, sound quality is high which is good.\n good product good price sound qualiti high good\n Positive 12 good product good pricing sound quality high good
796 while this laptop is only a moderate gamer, one really should not be stepping into a 26k product expecting ROG level gaming. if you want a killer gaming rig, set the 26k asode in your bespoke custom PC fund thst you'll be able to finally cash out three years later. if you just want to build a few houses in Minecraft or Terraria, this will do.the trackpad is responsive and the typing is absolutely enjoyable.Windows 10 has largely calmed down with the updates, and some features are... better... than Win7, as much as I hate to admit it.overall, a solid starter/typist laptop, but splurge on something with an actual graphics card if you want gaming.\n laptop moder gamer one realli step 26k product expect rog level game want killer game rig set 26k asod bespok custom pc fund thst youll abl final cash three year later want build hous minecraft terraria doth trackpad respons type absolut enjoyablewindow 10 larg calm updat featur better win7 much hate admit itoveral solid startertypist laptop splurg someth actual graphic card want gaming\n Negative 115 laptop moderate gamer product rog level gaming killer gaming rig 26k bespoke custom pc fund thst able years few houses minecraft terraria trackpad responsive typing enjoyable.windows updates features better win7 it.overall solid starter typist laptop actual graphics card gaming
797 Handy and light weight. Serves basic purposes of a laptop. Wouldn’t recommend for gaming though. Ryzen gets you through multi-tasking and can run multiple applications simultaneously.Out of box warranty was 3 months. Spoke to HP and they extended the warranty to one year.MS Office is only a trial version.Decent battery life, typical laptop display. All in all a good value for money buy.\n handi light weight serv basic purpos laptop wouldn’t recommend game though ryzen get multitask run multipl applic simultaneouslyout box warranti 3 month spoke hp extend warranti one yearm offic trial versiondec batteri life typic laptop display good valu money buy\n Positive 63 handy light weight basic purposes laptop wouldn t recommend gaming ryzen multi - multiple applications simultaneously.out box warranty months hp warranty year.ms office trial version.decent battery life typical laptop display good value money buy
798 Hello guys..After 3 days consecutive usage I'm writing this review.What I liked about this product and dislike.Pros and cons..1. For a generic purpose, or learning, education, coding, manual small businesses this laptop is more than sufficient. In terms of build quality it gives a premium feeling which I personally like the glossier look of this jet black laptop.2. Wide screen with less bezels which gives a hepatic feeling for watching videos on YouTube or any other social media. It also gives a very bright colorful eye-catching output for watching movies.3. Now let's talk about inside the laptop..Related to this built in apps, it gives lot of apps for free to use. And most of all the usable and necessary apps are already there which you will need in your daily usage. Like if you talk about Microsoft Edge web browser, it is also very much fast and responsive. Unlike the Firefox it doesn't lag or consume much data.Cons..1. Battery life sucks, I mean really it sucks, less than 4 hours with fully charge. But one thing is good charging time. It gets charge withing 2hours. Thanks to its fast charging.2. Graphics are ok. Not complaining material.3. So many updates for Windows 10. If you have a hotspot it will consume all your data in just one hour.Overall, it is a very good stylish looking laptop.I would recommend you if your budget is less then 30k.\n hello guysaft 3 day consecut usag im write reviewwhat like product dislikepro cons1 gener purpos learn educ code manual small busi laptop suffici term build qualiti give premium feel person like glossier look jet black laptop2 wide screen less bezel give hepat feel watch video youtub social media also give bright color eyecatch output watch movies3 let talk insid laptoprel built app give lot app free use usabl necessari app alreadi need daili usag like talk microsoft edg web browser also much fast respons unlik firefox doesnt lag consum much datacons1 batteri life suck mean realli suck less 4 hour fulli charg one thing good charg time get charg with 2hour thank fast charging2 graphic ok complain material3 mani updat window 10 hotspot consum data one houroveral good stylish look laptopi would recommend budget less 30k\n Positive 235 guys days consecutive usage review.what product dislike.pros cons generic purpose learning education coding manual small businesses laptop sufficient terms build quality premium feeling glossier look jet black laptop.2 wide screen less bezels hepatic feeling videos youtube other social media bright colorful eye output movies.3 laptop apps lot apps free most usable necessary apps daily usage microsoft edge web browser fast responsive firefox much data.cons battery life less hours charge thing good charging time charge thanks fast charging.2 graphics ok material.3 many updates windows hotspot data hour.overall good stylish looking laptop.i budget less 30k
799 Excellent Product in this Range and its with Window 10, Decent 4 GB RAM extended upto 8 GB with 1TB Hardisk and the processors are also nice. Its Light Weight, supercoo, Looks Smart, Easy to carry. After searching many products in this range i had finally decision about this product. Such a nice product by Amazon and HP. Thank you.\n excel product rang window 10 decent 4 gb ram extend upto 8 gb 1tb hardisk processor also nice light weight supercoo look smart easi carri search mani product rang final decis product nice product amazon hp thank you\n Positive 60 excellent product range window decent gb ram upto tb hardisk processors nice light weight supercoo smart easy many products range decision product nice product amazon hp
800 Better than i5.\n better i5\n Positive 3 better i5
801 I got this under 25k . I have been using since 2 months and don't have any issues with it yet. I haven't upgraded the RAM or anything , sometimes starting up can be slow , but for the price , I think this laptop is really worth it.I use it for browsing and other daily tasks.The display is nice and big, speakers are pretty loud enough, even video calls are quite clear. I am very satisfied with my purchase.If I find anything else worth mentioning, I will update this section :)\n got 25k use sinc 2 month dont issu yet havent upgrad ram anyth sometim start slow price think laptop realli worth iti use brows daili tasksth display nice big speaker pretti loud enough even video call quit clear satisfi purchaseif find anyth els worth mention updat section \n Positive 92 25k months issues ram slow price laptop worth it.i browsing other daily display nice big speakers loud video calls clear satisfied purchase.if worth section
802 Value for money laptop. What can u expect at this price range.? Best for normal use. Like documentation. Inbuilt windows 10.Over all nice product thanx amazon.Also thanx for giving 1000 rs amazon pay balance. 😀\n valu money laptop u expect price rang best normal use like document inbuilt window 10over nice product thanx amazonalso thanx give 1000 rs amazon pay balanc 😀\n Positive 35 value money laptop price range best normal use documentation inbuilt windows nice product thanx rs amazon balance
803 Used for 1 weekI bought this for normal ms office and little entertainment.Pros- value for money 27kGenuine win. 10Good viewing angleBattery charge fastScope for upgrade if u want(ram,ssd) and video editing can be done afterthatUsb 3.0 port,dvd writerGood for normal student useCons- have not seen any till now at this price Only thing i want is backlit keys but not possible at this price\n use 1 weeki bought normal ms offic littl entertainmentpro valu money 27kgenuin win 10good view anglebatteri charg fastscop upgrad u wantramssd video edit done afterthatusb 30 portdvd writergood normal student usecon seen till price thing want backlit key possibl price\n Positive 64 weeki normal ms office little entertainment.pros- value money 27kgenuine win anglebattery charge fastscope upgrade u want(ram ssd video editing port dvd writergood normal student usecons- price thing keys possible price
804 i am having problem with this laptop in terms of usb device not working properly and battery issue can i exchange my laptop or buy any other laptop its payment are on EMI and still pending and i have bought an additional warranty card\n problem laptop term usb devic work properli batteri issu exchang laptop buy laptop payment emi still pend bought addit warranti card\n Negative 45 problem laptop terms usb device battery issue laptop other laptop payment additional warranty card
805 Pros:Display is goodSpeaker output is okayLight weightBattery backup is okayGood HDDCons:Heating issues are thereTaking lot of time to load the windowsSuggestions:For Windows 10, it better to go with 6/8 GB RAM\n prosdisplay goodspeak output okaylight weightbatteri backup okaygood hddconsheat issu theretak lot time load windowssuggestionsfor window 10 better go 68 gb ram\n Positive 31 pros display goodspeaker output weightbattery backup okaygood hddcons heating issues lot time windowssuggestions windows gb ram
806 The laptop is extremely slow and laggy. The issues start within the first two weeks but in my case they were after the return window. One of the laptops restarts randomly a couple of times each day. The customer care team also is unable to help. The process to contact HP and get the warranty clause activated is painful and so far (30 days+) I have not received the required support. I would strongly discourage anyone from purchasing this product. I was an ardent HP fan but will not be purchasing their products anymore..\n laptop extrem slow laggi issu start within first two week case return window one laptop restart randomli coupl time day custom care team also unabl help process contact hp get warranti claus activ pain far 30 day receiv requir support would strongli discourag anyon purchas product ardent hp fan purchas product anymore\n Positive 94 laptop slow issues first weeks case return window laptops restarts couple times day customer care team unable process hp warranty clause painful days+ required support product ardent hp fan products
807 The laptop is great except for one item. The keyboard design is really poor. The silver topped keys with grey lettering are near invisible. The Function keys are numbered in miniscule font (that too in grey font). I think the regular designer went on a holiday while the keyboard was being designed. I really would like to give it three stars only due to this huge factor in efficient usability. You need to have a light shining directly on the keyboard to see the keys properly. But otherwise the machine is great.\n laptop great except one item keyboard design realli poor silver top key grey letter near invis function key number miniscul font grey font think regular design went holiday keyboard design realli would like give three star due huge factor effici usabl need light shine directli keyboard see key properli otherwis machin great\n Positive 94 laptop great item keyboard design poor silver keys grey lettering invisible function keys miniscule font grey font regular designer holiday keyboard stars huge factor efficient usability light keyboard keys machine great
808 Not at all recommendable .Very slow in all aspects and you can not upgrade further this system.Five minutes work will take one and half hour approx.\n recommend slow aspect upgrad systemf minut work take one half hour approx\n Positive 26 recommendable slow aspects system.five minutes half hour approx
809 Great laptop in this price or features are amazing.Design is very good and sleek. Processor also very good and I buy in Amazon sale in very good price and value for money really and I am very happy\n great laptop price featur amazingdesign good sleek processor also good buy amazon sale good price valu money realli happy\n Positive 38 great laptop price features amazing.design good sleek processor good amazon sale good price value money happy
810 Worst product. Hangs a lot. Heats like an iron box. Windows 10 is not at all compatible. Now after 1 month it is showing boot error. Battery back up is only less than 2hours.never buy this product. Go for Intel laptops that too from the store.\n worst product hang lot heat like iron box window 10 compat 1 month show boot error batteri back less 2hoursnev buy product go intel laptop store\n Negative 46 worst product lot iron box windows compatible month boot error battery less product intel store
811 The product is ok but speaker did not work from day 1. I cannot understand how such a basic defect gets even pushed out. BTW I was delivered a non booting laptop 1st up and Amazon promptly replaced a new one but it has the speaker issue\n product ok speaker work day 1 cannot understand basic defect get even push btw deliv non boot laptop 1st amazon promptli replac new one speaker issue\n Positive 47 product ok speaker day basic defect non booting laptop 1st amazon new speaker issue
812 Worse laptop...my old Acer D270 mini laptop with Intel Atom processor is performing better than this piece of garbage..Using this laptop.. You can not even open 5 - 6 tabs on your browser... While opening apps it take about 40 seconds to response...Dont buy... RYZEN 3 is more slower than Intel Atom processor..... Vega 3 graphic is there just to fill the configuration... Not useful at all.\n wors laptopmi old acer d270 mini laptop intel atom processor perform better piec garbageus laptop even open 5 6 tab browser open app take 40 second responsedont buy ryzen 3 slower intel atom processor vega 3 graphic fill configur use all\n Positive 67 worse laptop old acer d270 mini laptop intel atom processor piece garbage laptop tabs browser apps seconds dont buy ryzen slower intel atom processor vega graphic configuration useful
813 Screen quality is not good. You cannot view it from different angles. Only straight view. No lights on keypad hence cannot type in low lit rooms. Becomes slow very fast even though ample Ram memory space.\n screen qualiti good cannot view differ angl straight view light keypad henc cannot type low lit room becom slow fast even though ampl ram memori space\n Positive 36 screen quality good different angles straight view lights keypad low lit rooms slow ample ram memory space
814 I purchased this product recently. It is exactly same as described. Initially got some MS Office activation related issues but the seller was so helpful. They immediately resolved the issues. It is now working fine. I'm extremely happy with the product.Thanks Amazon..and thanks genuine-original.\n purchas product recent exactli describ initi got ms offic activ relat issu seller help immedi resolv issu work fine im extrem happi productthank amazonand thank genuineoriginal\n Positive 44 product same ms office activation issues seller helpful issues happy product.thanks amazon thanks genuine original
815 Update 16-10-18 - alright next update. it works smooth as butter. I will provide some step wise alterations to be made that will speed up the laptop.1.Uninstall Mcafee. Windows defender is capable enough to protect from normal threats unless malicious sites are opened by user. In that case use AVG . its pretty light on RAM2. Then go on control center - windows update and keep running updates,restarts and boot ups until it shows that no further update is available. Similarly do it for HP assistant. It will download all the drivers required for the laptop. This ll eat some 2 hours of time but very necessary.3. Once all updates done - Go to task manager. From there to start up and disable which ever process you don't use like Microsoft one drive etc.4. In task manager go on view tab and update refresh speed to the highest.5. In start bar in computer/ windows management manually update processor speed to 100% while on battery or on AC power.After all these setting you will find laptop boot up real nice in under 30 sec and no lag while operating in multiple windows or videos or heavy word/ excel files.Updated rating to 5 star now11-10-18 What a grt PDT. Crashed within 3 hrs ..So much for comparison with i3 ane i5 . Now amazon won't replace till an engineer visit after 2 days to see wht I posted in here...Ll update after 2 days !\n updat 161018 alright next updat work smooth butter provid step wise alter made speed laptop1uninstal mcafe window defend capabl enough protect normal threat unless malici site open user case use avg pretti light ram2 go control center window updat keep run updatesrestart boot up show updat avail similarli hp assist download driver requir laptop eat 2 hour time necessary3 updat done go task manag start disabl ever process dont use like microsoft one drive etc4 task manag go view tab updat refresh speed highest5 start bar comput window manag manual updat processor speed 100 batteri ac poweraft set find laptop boot real nice 30 sec lag oper multipl window video heavi word excel filesupd rate 5 star now111018 grt pdt crash within 3 hr much comparison i3 ane i5 amazon wont replac till engin visit 2 day see wht post herel updat 2 day \n Positive 243 update alright next update smooth butter step wise alterations laptop.1.uninstall mcafee windows defender capable normal threats malicious sites user case avg pretty light ram2 control center windows update updates restarts boot ups further update available hp assistant drivers laptop hours time necessary.3 task manager disable microsoft drive etc.4 task manager view tab refresh speed highest.5 start bar computer/ windows management processor speed % battery ac power.after laptop boot nice sec lag multiple windows videos heavy word/ excel rating star now11 grt pdt much comparison i3 ane i5 amazon engineer visit days wht days
816 AMD is robust and Ryzen is the latest development in speed. Screen is spectacular with WLED. Rugged body, high aesthetics. Enjoy it ! !\n amd robust ryzen latest develop speed screen spectacular wled rug bodi high aesthet enjoy \n Positive 24 amd robust ryzen latest development speed screen spectacular rugged body high aesthetics
817 Got it for 25k..great build..gud display and decent processor for light gaming..it doesn't come with a bag...that the only downside...for 25k...it a great buy for me\n got 25kgreat buildgud display decent processor light gamingit doesnt come bagthat downsidefor 25kit great buy me\n Positive 26 25k great build gud display decent processor light gaming bag only downside 25k great buy
818 Time taken for charging is very High. There is no emblem of razen and radeon in my laptop as shown by previous customer actually it's not a Matter but while im using it on the first day it is lagging,i mean time for opening a folder and playing videos it is taking time. I was thinking about returning it back.\n time taken charg high emblem razen radeon laptop shown previou custom actual matter im use first day laggingi mean time open folder play video take time think return back\n Positive 60 time charging high emblem razen radeon laptop previous customer matter first day time folder videos time
819 Best buy laptop under 30k\n best buy laptop 30k\n Positive 5 best laptop 30k
820 This is an amazing laptop at this price range and the upgrades that you can do is an added bonus. Fir general use, no one can ask for more. But would really recommend adding an 8GB ram for games if you wanna play GTA 5 without lags on meduim graphics\n amaz laptop price rang upgrad ad bonu fir gener use one ask would realli recommend ad 8gb ram game wanna play gta 5 without lag meduim graphics\n Positive 50 amazing laptop price range upgrades bonus fir general use one more gb ram games wanna play gta lags meduim graphics
821 Pros:Nice design and build quality.Speaker - good.Battery - goodPerformance - Need 4GB extra ramCons;Screen - AvgSuper slow. Need Ram upto 8GB.For 22k its a steal.\n prosnic design build qualityspeak goodbatteri goodperform need 4gb extra ramconsscreen avgsup slow need ram upto 8gbfor 22k steal\n Negative 25 pros nice design quality.speaker good.battery goodperformance extra ramcons;screen avgsuper slow ram upto 8gb.for steal
822 processor is extremely slow. Wastage of money and time. dont buy. very disappointed\n processor extrem slow wastag money time dont buy disappointed\n Positive 13 processor slow wastage money time disappointed
823 Over all very good laptop in this price range I really liked it i am totally satisfied with the product Thnk u amazon for the secured and safe delivery of the product....!!! Guys go for it....!!!\n good laptop price rang realli like total satisfi product thnk u amazon secur safe deliveri product guy go it\n Positive 37 good laptop price range satisfied product thnk u amazon secured safe delivery product guys
824 Honest Review after one week usageIf you are searching for better specifications under 25K budget go for it....Pros:Good battery backupFast chargingGood audio effectsHD ScreenCons:Little bit laggyCons will be not a matter for this laptop in this budget\n honest review one week usageif search better specif 25k budget go itprosgood batteri backupfast charginggood audio effectshd screenconslittl bit laggycon matter laptop budget\n Positive 37 honest review week better specifications 25k budget pros good battery backupfast charginggood audio effectshd screencons little bit laggycons matter laptop budget
825 Do not buy this laptopPerformance is slowNot built for gamingProcessesing speed is lowIt cannot handle gta vice CityWorst product\n buy laptopperform slownot built gamingprocesses speed lowit cannot handl gta vice cityworst product\n Neutral 19 laptopperformance speed lowit gta vice cityworst product
826 This is worth the money except it cannot handle 4k 2160p very well but it can handle 1440p HD very well. It's good for simple gaming and not expecting much with graphics but wanna have a smooth experience in playing it. And it's good for daily life office work too.At the end I would say well you should try investing into something like this with these features\n worth money except cannot handl 4k 2160p well handl 1440p hd well good simpl game expect much graphic wanna smooth experi play good daili life offic work tooat end would say well tri invest someth like features\n Positive 67 worth money hd good simple gaming graphics wanna smooth experience good daily life office work end features
827 Worst experience with Amazon. I used the laptop after some time I charged it fully and switched off after some hours I tried to on but it was not turning on so I plugged in the charger the laptop turned on but battery was showing 10% lol. Tried to return the product they don't even have any policy to return the product also seems something is broken inside the product.\n worst experi amazon use laptop time charg fulli switch hour tri turn plug charger laptop turn batteri show 10 lol tri return product dont even polici return product also seem someth broken insid product\n Negative 70 worst experience amazon laptop time hours charger laptop battery % lol product policy product product
828 Its a good product considering the price. Solves all purpose like not so heavy gaming, multi taskings, browsing and other activities. Those who do not have heavy usage can easily go for it.\n good product consid price solv purpos like heavi game multi task brows activ heavi usag easili go it\n Positive 33 good product price purpose heavy gaming multi taskings browsing other activities heavy usage
829 Please give me the seller number. I have brought hp laptop from them, now its hard drive gets corrupted,so i replaced by with help of warranty period from hp company. But i lost all data and also windows 10 licensed copy product key.It is asking to purchase windows licensed copy.Seller must have purchase copy serial key.So please give me there contact number.\n pleas give seller number brought hp laptop hard drive get corruptedso replac help warranti period hp compani lost data also window 10 licens copi product keyit ask purchas window licens copysel must purchas copi serial keyso pleas give contact number\n Positive 62 seller number hp laptop hard drive help warranty period hp company data copy product key.it windows copy.seller copy serial key.so contact number
830 Good build quality and stylish design are impressive at this price. But when it comes to usage its utter waste. For example if I open Chrome browser it takes about 30 seconds to load and when I type something to browse, it is not appearing instantly its taking long time to appear. You should take long breaths while using the laptop. Very good laptop for meditation practice:)\n good build qualiti stylish design impress price come usag utter wast exampl open chrome browser take 30 second load type someth brows appear instantli take long time appear take long breath use laptop good laptop medit practice\n Positive 67 good build quality stylish design impressive price utter waste example chrome browser seconds long time long breaths laptop good laptop meditation practice
831 Take 25 minutes to start....Take 15 mins to connect data.....Take so many attempts to open word pad....How hp and Amazon both can cheet the people. ...I knew kunny trend of AmazonButNow hating the HP laptops. ...Hey am i using simbony mobiles ....I had 4mbps speed data yar ...What to do neve want to open it again\n take 25 minut starttak 15 min connect datatak mani attempt open word padhow hp amazon cheet peopl knew kunni trend amazonbutnow hate hp laptop hey use simboni mobil 4mbp speed data yar neve want open again\n Negative 57 minutes mins data many attempts word pad hp amazon people kunny trend amazonbutnow hp laptops simbony mobiles speed data yar
832 I wud not recommend as it is very very very slow in processing... Kind of headache. When i click to play a video, even it takes 10 seconds to execute. Meanwhile if another thing you want to do in laptop, Its almost impossible\n wud recommend slow process kind headach click play video even take 10 second execut meanwhil anoth thing want laptop almost impossible\n Positive 44 slow processing headache video seconds thing laptop impossible
833 Its best value for money laptop as it's comes with AMD Ryzen 3 processor and 2 GB AMD Vega graphic it's good machine for photo editing and gaming but screen feels very dull and over bright. apart from specs is good.It suits for college student for academic works.\n best valu money laptop come amd ryzen 3 processor 2 gb amd vega graphic good machin photo edit game screen feel dull bright apart spec goodit suit colleg student academ works\n Positive 48 best value money laptop amd ryzen processor gb amd vega good machine photo editing gaming screen dull bright specs suits college student academic works
834 Been six-month now and battery stopped charging. Just the good look is there and the laptop is only for basic work like media and browsing only. It's really very slow and always heated up, you can't just keep it in your lap.\n sixmonth batteri stop charg good look laptop basic work like media brows realli slow alway heat cant keep lap\n Positive 42 month battery good look laptop basic work media slow lap
835 Processor is very slow. I tried to add another RAM but there was not another slot to add another 4 gb ram. So I added total 8 gb ram. Now speed is ok\n processor slow tri add anoth ram anoth slot add anoth 4 gb ram ad total 8 gb ram speed ok\n Positive 33 processor slow ram slot gb ram total gb ram speed ok
836 The laptop is terribly slow, it takes 10 to 20 seconds just to launch an app or open windows explorer etc.Browsing is very slow, using MS excel is very slow.I installed Windows updates and restarted the laptop multiple times.. still no fix for the issue..Won't recommend this product ..\n laptop terribl slow take 10 20 second launch app open window explor etcbrows slow use ms excel slowi instal window updat restart laptop multipl time still fix issuewont recommend product \n Positive 49 laptop slow seconds app open windows explorer etc.browsing slow ms excel slow.i windows updates laptop multiple times fix issue won't product
837 Will be slow! Once I upgraded with WD green SSD 240 GB and additional 8 Gb Ram,it started to respond fast and boot time has drastically reduced.Cloned OS from HDD to SSD through acronics software..\n slow upgrad wd green ssd 240 gb addit 8 gb ramit start respond fast boot time drastic reducedclon os hdd ssd acron software\n Positive 36 slow green ssd gb additional gb ram fast boot time os hdd acronics software
838 Everytime I tried to start it's shows a pop up "the selected boot device failed". Then I press and gone nothing. My 1st ever laptop and worst experience. Can anyone help me with this?? I think I have to return it. And boot disk also required??\n everytim tri start show pop select boot devic fail press gone noth 1st ever laptop worst experi anyon help think return boot disk also required\n Negative 46 everytime pop boot device 1st laptop worst experience boot disk
839 Awesome laptop with this budget.The laptop is fast enough and battery life is average so don't get worried,sound quality good, design is impressive,but ram upgradation is suggested in future for more better performance but still enough speed with default configuration.Don't go for any i3 7th gen processor just got for it!\n awesom laptop budgetth laptop fast enough batteri life averag dont get worriedsound qualiti good design impressivebut ram upgrad suggest futur better perform still enough speed default configurationdont go i3 7th gen processor got it\n Positive 51 awesome laptop budget.the laptop enough battery life average worried sound quality good design impressive upgradation future better performance enough speed default configuration.don't i3 7th gen processor
840 Especially- boot up to windows - almost 2 minuteswait for the logon screen to appear- 2 minAfter login wait for all icons and wifi connectivities another - 2 minutesOpen any browser- 30 seconds\n especi boot window almost 2 minuteswait logon screen appear 2 minaft login wait icon wifi connect anoth 2 minutesopen browser 30 seconds\n Neutral 33 windows minuteswait logon screen minafter login icons wifi connectivities browser- seconds
841 Very worst product, purchased it on 19 July 2019 ....since than lots of hanging issues n with in 20 days...it's not getting started... even screen is getting black out while starting..u feel urself helpless.Customer care response very poor... recommend not to purchse\n worst product purchas 19 juli 2019 sinc lot hang issu n 20 daysit get start even screen get black startingu feel urself helplesscustom care respons poor recommend purchse\n Negative 42 worst product july lots issues n days screen black helpless.customer care response poor
842 Brilliant product. Needs an extra set of ram for better performance. First order got delivered in one day. Order one more looking at the performance as a gift and the product was delivered with delay even with prime membership with the same seller. Don't rely on delivery dates if you want to gift this to someone.\n brilliant product need extra set ram better perform first order got deliv one day order one look perform gift product deliv delay even prime membership seller dont reli deliveri date want gift someone\n Positive 56 brilliant product extra set ram better performance first order day performance gift product delay prime membership same seller delivery dates
843 The laptop is fine but it has some boot issues (probably because of HDD)Also the HDD is very poor quality so buy an SSD along with the laptop. You won't regret it.\n laptop fine boot issu probabl hddalso hdd poor qualiti buy ssd along laptop wont regret it\n Neutral 32 laptop fine boot issues hdd)also hdd poor quality ssd laptop
844 Battery what I aspect is not too good but not too bad also. Screen should have antiglare as seems it doesn't have,as eyes getting burned irritating feel.Before buy please check manufacturing date as it will reflect your online warranty support and software updates.\n batteri aspect good bad also screen antiglar seem doesnt havea eye get burn irrit feelbefor buy pleas check manufactur date reflect onlin warranti support softwar updates\n Positive 43 battery good bad screen antiglare eyes buy date online warranty support software updates
845 I purchased for 26k (Amazon summer sale 2019+1500 card discount).Nice product in this range.Suitable for daily usage.If you dont have budget around 30k then go for this.Better than intel i3 7th gen.Only bad thing is its display.It is not full HD .But remember @ this price no one offers full hd display.\n purchas 26k amazon summer sale 20191500 card discountnic product rangesuit daili usageif dont budget around 30k go thisbett intel i3 7th genonli bad thing displayit full hd rememb price one offer full hd display\n Negative 52 amazon summer sale card discount).nice product range.suitable daily usage.if budget 30k this.better intel i3 7th bad thing full hd price one full hd display
846 Its definately not the best laptop out there but is a good choice at this price point. If you watch movies it will last for about 4 n half hours.\n defin best laptop good choic price point watch movi last 4 n half hours\n Positive 30 best laptop good choice price point movies n half hours
847 Don't buy this product, it hangs all the time. Screen goes blank many times. I've installed only 3 additional apps. Want to return this product now.I'm using this product for last 6 months. It's totally a waste.\n dont buy product hang time screen goe blank mani time ive instal 3 addit app want return product nowim use product last 6 month total waste\n Negative 37 product time screen blank many times additional apps product now.i'm product last months waste
848 Within 6 months the screen got white patches,contacted hp for warranty but they are saying this kind of issues are not covered under normal warranty.Disappointed with hp as well as amazon.If they say it has got 1 yrs warranty, than what do they cover in it?Dont buy such products.\n within 6 month screen got white patchescontact hp warranti say kind issu cover normal warrantydisappoint hp well amazonif say got 1 yr warranti cover itdont buy products\n Positive 49 months screen white patches hp warranty kind issues normal hp yrs warranty it?dont such products
849 Everything is bad about this laptop. The worse laptop I've used in my life. Takes 20 minutes to open windows 10. Application start after 5 minutes of clicking a mouse button. Horrible. Pathetic. Never ever plan to buy this laptop. HP is just a big brand with substandard product range.\n everyth bad laptop wors laptop ive use life take 20 minut open window 10 applic start 5 minut click mous button horribl pathet never ever plan buy laptop hp big brand substandard product range\n Negative 50 bad laptop worse laptop life minutes windows application start minutes mouse button horrible pathetic laptop hp big brand substandard product range
850 Display not working, I order this lap 1st time had issue wd display not working, so I replace this lap nd got new one 3 month back, now I had same problem display not working, I feel this model is worst in hp\n display work order lap 1st time issu wd display work replac lap nd got new one 3 month back problem display work feel model worst hp\n Negative 43 display lap 1st time issue display lap nd new month same problem display model worst hp
851 Dear Friends,Don't buy this leptop as well as HP laptop Bcz I bought this leptop in month of Kan 2019 but it's hanging and it's too slow.. And they are not providing any kind of service . I have been trying to reaching them last 3 month but no contact..\n dear friendsdont buy leptop well hp laptop bcz bought leptop month kan 2019 hang slow provid kind servic tri reach last 3 month contact\n Positive 51 dear friends don't leptop hp laptop bcz leptop month kan slow kind service last month contact
852 We can use it for personalCannot take heavy loads like video editing or high end gamingWe can use it for casual movie watching ms office purposes value for moneyStill not a problem with this product\n use personalcannot take heavi load like video edit high end gamingw use casual movi watch ms offic purpos valu moneystil problem product\n Positive 35 personalcannot heavy loads video editing high end gamingwe casual movie ms office purposes value moneystill problem product
853 Works well for office use but don't expect anything from it if you want to play games , it won't even run GTA V\n work well offic use dont expect anyth want play game wont even run gta v\n Positive 24 office use games gta v
854 This amazon side is very bad.... they sell bad product only..... this hp laptop start giving problem in just15 day........ very bad...... keeping all 2nd hand product\n amazon side bad sell bad product hp laptop start give problem just15 day bad keep 2nd hand product\n Negative 27 amazon side bad bad product hp laptop start problem just15 day bad 2nd hand product
855 I have been using this for almost a month now and honestly, no complaints. It does get a bit slow at times, but that's something you can fix. Other than that, a great budget laptop.\n use almost month honestli complaint get bit slow time that someth fix great budget laptop\n Positive 35 month complaints bit slow times other great budget laptop
856 Quality wise it is fine,but if you talk about it performance it is really very bad output giving...I'm not even to use two tab in one time ..it is really leisurely working totally not satisfy of its performance\n qualiti wise finebut talk perform realli bad output givingim even use two tab one time realli leisur work total satisfi performance\n Negative 38 quality wise fine performance bad output i'm tab time satisfy performance
857 Got a laptop without Microsoft Windows 10 OS. Installed the OS manually and noticed that hp default 1 year warranty of the laptop is expired. Very bad service\n got laptop without microsoft window 10 os instal os manual notic hp default 1 year warranti laptop expir bad service\n Negative 28 laptop microsoft windows os . os manually hp default year warranty laptop bad service
858 I purchased it on 9th june 2019 when i start i found Right click not working also when i plugged in charger it shows charger plugged in but not charging.Always wrost experience from Amazon.\n purchas 9th june 2019 start found right click work also plug charger show charger plug chargingalway wrost experi amazon\n Positive 34 9th june right click charger charger wrost experience amazon
859 Nice worth it\n nice worth it\n Positive 3 nice worth
860 Recieved with HDD problem, got warranty and replaced HDD. Installed additional 4 GB crucial DDR4 Ram. Now it workings excellent. Display quality is average. Battery backup is about 4 hours. Medium demanding games are playable in high set.Good for AutoCAD and Daily tasks.\n reciev hdd problem got warranti replac hdd instal addit 4 gb crucial ddr4 ram work excel display qualiti averag batteri backup 4 hour medium demand game playabl high setgood autocad daili tasks\n Negative 43 hdd problem warranty hdd additional gb crucial ddr4 ram excellent display quality average battery backup hours medium demanding games playable high set.good autocad daily tasks
861 Best laptop in the range of 25k. I love the speed of new ryzen processor way more powerful that i expected.\n best laptop rang 25k love speed new ryzen processor way power expected\n Positive 21 best laptop range 25k speed new ryzen processor powerful
862 It is my biggest mistake that i chose this product over lenovo or any other brand. I will place the refund request soon. It is worst laptop i have ever experienced. I wanted it for my employees usage, and wanted to order 20 pieces but now it doesn't worth at all. Highly disappointed.\n biggest mistak chose product lenovo brand place refund request soon worst laptop ever experienc want employe usag want order 20 piec doesnt worth highli disappointed\n Negative 53 biggest mistake product lenovo other brand refund request worst laptop employees usage pieces disappointed
863 Taking time to open and apps also when i updates then apps working normal overall nice product in this range of price\n take time open app also updat app work normal overal nice product rang price\n Positive 22 time apps normal overall nice product range price
864 Battery backup is only 3 hour instead 13hr written in description. I complained many times but Amazon didn't exchange the product. It's not value for money. Boot time also too late. Don't go for this laptop. It's look and body is also too poor. I had brought in rs-24990 .\n batteri backup 3 hour instead 13hr written descript complain mani time amazon didnt exchang product valu money boot time also late dont go laptop look bodi also poor brought rs24990 \n Negative 50 battery backup hour description many times amazon product value money boot time laptop look body poor rs-24990
865 Worth buying, display is good and sound quality is also good. Delivered earlier and amazon choice is perfect.\n worth buy display good sound qualiti also good deliv earlier amazon choic perfect\n Positive 18 worth buying display good sound quality good amazon choice perfect
866 Design is ok...its lightweight also...bt...its a slow laptop...atleast for me.... I don't know if its with my particular peice....bt i was very dissatisfied with performance....though it is very good for day to day usage....\n design okit lightweight alsobtit slow laptopatleast dont know particular peicebt dissatisfi performancethough good day day usage\n Positive 34 design ok lightweight bt slow laptop atleast particular peice bt dissatisfied performance good day day usage
867 Very pathetic product by HP. nothing works. Even dustbin is more usable then this crap laptop. HP should be banned for making and selling these kinds of laptop.\n pathet product hp noth work even dustbin usabl crap laptop hp ban make sell kind laptop\n Negative 28 pathetic product hp dustbin usable crap laptop hp kinds laptop
868 Value for money and nice performance even with the 4GB RAM!\n valu money nice perform even 4gb ram\n Positive 11 value money nice performance gb ram
869 Got fooled by reading good reviews.. System is slow and the OS keeps hanging .. Using it for 2 weeks and it's already causing a lot of issues. Don't buy it.. I was expecting it to be much better..\n got fool read good review system slow os keep hang use 2 week alreadi caus lot issu dont buy expect much better\n Positive 39 good reviews system slow os weeks lot issues better
870 Processor is ok....Battery long for only 3-3.30 hrs.I really want more battery backup.\n processor okbatteri long 3330 hrsi realli want batteri backup\n Positive 14 processor ok battery hrs.i more battery backup
871 DAM Slow, worst product from amazon. First time fooled by amazon reviews\n dam slow worst product amazon first time fool amazon reviews\n Negative 12 dam slow worst product amazon first time amazon reviews
872 Laptop was operation vary slow. There is no replacment options.Fake information has written in description\n laptop oper vari slow replac optionsfak inform written description\n Neutral 15 laptop operation slow replacment options.fake information description
873 After Unfolding ,when I press power button even I am not able to start it. It's fan sound is too high or silencer is not working.\n unfold press power button even abl start fan sound high silenc working\n Positive 26 power button able fan sound high silencer
874 Nice product but hangs sometimes other wise on this price u can't expect more\n nice product hang sometim wise price u cant expect more\n Positive 14 nice product other price more
875 Brought is at 25k in Diwali sale it is nice laptop for all casual and little bit heavy usage. i have face no problem yet. Battery is main highlight of this. I used this for programming it works well without any issues.\n brought 25k diwali sale nice laptop casual littl bit heavi usag face problem yet batteri main highlight use program work well without issues\n Positive 42 25k diwali sale nice laptop casual little bit heavy usage face problem battery main highlight issues
876 For the price its a decent laptop. The RAM needs to be upgraded to minimum 8 GB, otherwise the laptop is too slow.Upgraded using Crucial 4 GB DDR4 RAM and now the performance is better.Suitable as an everyday laptop.\n price decent laptop ram need upgrad minimum 8 gb otherwis laptop slowupgrad use crucial 4 gb ddr4 ram perform bettersuit everyday laptop\n Neutral 39 price decent laptop ram minimum gb laptop slow.upgraded crucial gb ddr4 ram performance better.suitable everyday laptop
877 Its a worst product and you will regret for life wasting 22k for this pathetic slow laptop, laptop is very slow and not able to return or replace. DO NOT BUY!\n worst product regret life wast 22k pathet slow laptop laptop slow abl return replac buy\n Negative 31 worst product life 22k pathetic slow laptop laptop slow able
878 Mostly as expected, performance is decent for daily office task and light gaming.but its little bit slow,some hp i3 in same range performs better than this or just mine laptop is slow or something else.\n mostli expect perform decent daili offic task light gamingbut littl bit slowsom hp i3 rang perform better mine laptop slow someth else\n Positive 35 performance decent daily office task light little bit slow hp i3 same range better mine laptop slow
879 Looking pretty good,but battery back up not longer...only 2-3 hours,Screen quality nice.system operating very slow.i think so need some improvement\n look pretti goodbut batteri back longeronli 23 hoursscreen qualiti nicesystem oper slowi think need improvement\n Positive 20 good battery longer hours screen quality nice.system improvement
880 This is just superb. the quality of the product is very good as described in images. Delivered within 24 hours as a prime customer. Functions and specifications are the same as described on site. Go for it this is a best buy in summer sale.\n superb qualiti product good describ imag deliv within 24 hour prime custom function specif describ site go best buy summer sale\n Positive 45 superb quality product good images hours prime customer functions specifications same site best buy summer sale
881 Not more than 3 hrs of battery life.Slow processing speed.\n 3 hr batteri lifeslow process speed\n Neutral 10 more hrs battery life.slow processing speed
882 I get around 2.0-2.5 hours battery life. Windows updates don't get installed on the first try itself. Web browsing is fast, but all other applications are slow.\n get around 2025 hour batteri life window updat dont get instal first tri web brows fast applic slow\n Neutral 27 hours battery life windows updates first try web browsing fast other applications slow
883 I did not want to make it 1star but I have received a laptop with screen discoloration which is a manufacturing defect and should be replaced by amazon. I am waiting for my replacement.\n want make 1star receiv laptop screen discolor manufactur defect replac amazon wait replacement\n Negative 34 laptop screen discoloration manufacturing defect amazon replacement
884 It is a nice product,and ryzen 3 is really better than intel core i3 7th generation with amd vega 3 graphics . Battery is maximum run 4 hours on full charge with mild browsing.sound quality is slightly different but it's ok.display quality is also good.\n nice productand ryzen 3 realli better intel core i3 7th gener amd vega 3 graphic batteri maximum run 4 hour full charg mild browsingsound qualiti slightli differ okdisplay qualiti also good\n Positive 46 nice product ryzen better intel core i3 7th generation amd vega graphics battery maximum run hours full charge mild browsing.sound quality different ok.display quality good
885 Looks delicated laptop .. Opening laptop I found wifi connectivity issue (post network reset). Even driversnot getting update. Pls think twice before purchase\n look delic laptop open laptop found wifi connect issu post network reset even driversnot get updat pl think twice purchase\n Neutral 23 laptop opening laptop wifi connectivity issue post network reset update purchase
886 I bought it for 24999 plus 10% discount. I added 4gb ddr4 2400mhz ram for 2700₹. So my product is ready in 25k. In this rupees it is beating Intel i5 performance with same spec. So definitely new ryzen cpu products are worth to buy.\n bought 24999 plu 10 discount ad 4gb ddr4 2400mhz ram 2700₹ product readi 25k rupe beat intel i5 perform spec definit new ryzen cpu product worth buy\n Positive 45 % discount gb ddr4 ram product ready 25k rupees intel i5 performance same spec new ryzen cpu products worth
887 the computer stopped working three days before about 3 months after buying and no amount of effort has connected me to HP service center to get it repaired.if anyone reads this can u please ask HP to solve this problem for me as this was my Business Laptop\n comput stop work three day 3 month buy amount effort connect hp servic center get repairedif anyon read u pleas ask hp solv problem busi laptop\n Negative 48 computer days months amount effort hp service center hp problem business laptop
888 Good product at this price, can be use for basic work & for students.\n good product price use basic work students\n Positive 14 good product price use basic work students
889 Very slow offen hangingI din get user manual and guide\n slow offen hangingi din get user manual guide\n Neutral 10 slow offen hangingi din user manual
890 Excellent product from HP...but need to upgrade from 4gb to 8 GB ram.. works very well if this laptop had extra ram\n excel product hpbut need upgrad 4gb 8 gb ram work well laptop extra ram\n Positive 22 excellent product hp gb gb ram laptop extra ram
891 Battery life is not as described it lasts up to 3 hours only pathetic, weighs more. Not worth.\n batteri life describ last 3 hour pathet weigh worth\n Positive 18 battery life hours pathetic more worth
892 nyc laptop and value for money bcoz maine isko ek mahina use krne ke baad bol raha hu and maine isko 22000 me liya tha and totally worth it and next month me ismay 120 gb ssd and 4 gb ram bhi upgrade karungaaa and nyc perfornance battery life all over nyc product\n nyc laptop valu money bcoz main isko ek mahina use krne ke baad bol raha hu main isko 22000 liya tha total worth next month ismay 120 gb ssd 4 gb ram bhi upgrad karungaaa nyc perforn batteri life nyc product\n Positive 54 nyc laptop value money bcoz maine isko ek mahina use krne ke baad bol raha hu maine isko tha worth next month ismay gb ssd gb ram bhi upgrade karungaaa nyc perfornance battery life nyc product
893 Delivery was good got in one day, Display quality average, Battery performance too worst, it doesn't come for even watching a movie Draining fastly.processor performance was good, quick accessing,.\n deliveri good got one day display qualiti averag batteri perform worst doesnt come even watch movi drain fastlyprocessor perform good quick accessing\n Positive 29 delivery good day display quality average battery performance worst movie fastly.processor performance good quick accessing
894 This product is not working properly.Just 5 minutes his bottom very hot.His operating system is very slowly & always hang.No any single photos or any data store in this product. Very third class product.\n product work properlyjust 5 minut bottom hothi oper system slowli alway hangno singl photo data store product third class product\n Neutral 34 product properly.just minutes bottom operating system single photos data store product third class product
895 Its good for basic needs like internet surfing and watching movies. Good buy at this price.\n good basic need like internet surf watch movi good buy price\n Positive 16 good basic needs internet surfing movies good buy price
896 Best laptop ever made in history by hp . You should buy without worrying about it. You can nowhere get this kind of laptop in just 21k . Only the performance is not little slower .\n best laptop ever made histori hp buy without worri nowher get kind laptop 21k perform littl slower \n Positive 36 best laptop history hp kind laptop 21k performance little slower
897 Laptop is not good...slow speed...also not working professional...its only For games...i waste my money...u not waste...when we pay 28k...we expect more...but i m very 😔\n laptop goodslow speedalso work professionalit gamesi wast moneyu wastewhen pay 28kwe expect morebut 😔\n Neutral 25 laptop good slow speed professional games money 28k more m
898 Worst laptop don’t buy it\n worst laptop don’t buy it\n Negative 5 worst laptop don t
899 I would not recommend it for gaming just for random office work it's okey\n would recommend game random offic work okey\n Positive 14 random office work okey
900 Bakwaas hai ji\n bakwaa hai ji\n Neutral 3 bakwaas hai ji
901 The laptop is very very slow, Ishtar of amd rayzen3, it boots up very very slowly\n laptop slow ishtar amd rayzen3 boot slowly\n Neutral 16 laptop slow ishtar amd
902 In this price it is best loptop. I played asphalt air bone game there is no frame drops hanging problem. But it's not for pubg. It perform 5 multiple tasks keeps in memory.\n price best loptop play asphalt air bone game frame drop hang problem pubg perform 5 multipl task keep memory\n Positive 33 price loptop asphalt air bone game frame drops problem pubg multiple tasks memory
903 I think I got refurbished product... Now I can't even replace this one... No matter how many times I reset disk always occupies 100% memory... Very first Poor experience from Amazon\n think got refurbish product cant even replac one matter mani time reset disk alway occupi 100 memori first poor experi amazon\n Negative 31 product many times disk % memory first poor experience amazon
904 Poor performance and hang several time on a new product.. must be a manufacturing defect.. or Poor value for money..\n poor perform hang sever time new product must manufactur defect poor valu money\n Negative 20 poor performance several time new product manufacturing defect poor value money
905 Useles product... Hangs a lot...\n usel product hang lot\n Neutral 5 useles product lot
906 If you have lot of patience and time, go for this laptop. Its dead slow and hangs 8 out of 10 times and takes lot of time to open anything.. Just waste of money.\n lot patienc time go laptop dead slow hang 8 10 time take lot time open anyth wast money\n Negative 35 lot patience time laptop dead slow times lot time waste money
907 Received it with manufacturing defect. Wifi adapter was not working properly. Replacement was done but after replacement received a used/refurbished/tampered laptop with local packing on the HP box under the amazon packaging. Finally I have returned the product.\n receiv manufactur defect wifi adapt work properli replac done replac receiv usedrefurbishedtamp laptop local pack hp box amazon packag final return product\n Negative 38 defect adapter replacement replacement laptop local packing hp box amazon packaging product
908 Very good laptop for this price , I have purchased in Diwali sell. It was very cheep for this configuration. I am very happy\n good laptop price purchas diwali sell cheep configur happy\n Positive 24 good laptop price diwali cheep configuration happy
909 In plain language, if you want to watch movie or listen song then buy it rest its no good to work on. Not even C++ programmings\n plain languag want watch movi listen song buy rest good work even c programmings\n Positive 26 plain language movie song good c++ programmings
910 best laptop under 25k.Performance is good ,looks are great, battery nice and a great and fast delivery.\n best laptop 25kperform good look great batteri nice great fast delivery\n Positive 17 best laptop good looks great battery nice great fast delivery
911 Best to buy for students and normal use .Best laptop below 27k\n best buy student normal use best laptop 27k\n Positive 12 best students normal use laptop
912 It's very slow processor and it hanging continuously when you work on it. Don't buy it, price is less than intel processor 2-3k. But why not purchase intel this type life time headack to you.\n slow processor hang continu work dont buy price less intel processor 23k purchas intel type life time headack you\n Neutral 35 slow processor price less intel processor 3k intel type life time headack
913 I would appreciate if seller can be sensible enough to provide atleast a laptop sleeve or bag to keep the laptop as it is of good price and mere expenditure of 600rs won't be big loss for the seller.\n would appreci seller sensibl enough provid atleast laptop sleev bag keep laptop good price mere expenditur 600r wont big loss seller\n Positive 39 seller sensible laptop sleeve bag laptop good price mere expenditure 600rs big loss seller
914 Nice laptop in amazing price\n nice laptop amaz price\n Positive 5 nice laptop amazing price
915 I bought this 15 days ago and it is not up to the mark, the working condition is not good and laptop is deadslow\n bought 15 day ago mark work condit good laptop deadslow\n Positive 24 days mark condition good laptop deadslow
916 Amazing deal.. Purchased for 22500..Battery backup- 4-5 hoursDisplay is goodPerformance smoothIn build windows 10Light weight\n amaz deal purchas 22500batteri backup 45 hoursdisplay goodperform smoothin build window 10light weight\n Neutral 15 amazing deal battery backup- hoursdisplay goodperformance smoothin build windows weight
917 Got a product in 6 month warranty but it was told it was of 1 year warranty..hanging issue hp store has rejected to accept it as they are saying of having wrong invoice\n got product 6 month warranti told 1 year warrantyhang issu hp store reject accept say wrong invoice\n Negative 33 product month warranty year warranty issue hp store wrong invoice
918 Good for day to day use and some mild editing and programming work. Increase the ram if you want to work intensely on it\n good day day use mild edit program work increas ram want work intens it\n Positive 24 good day day use mild editing programming work ram
919 Delivery was fast but first day after display problem is there, very slow to start laptop it will take minimum 5mins, overall bad experience, don't buy this laptop, the worst laptop for basic use also\n deliveri fast first day display problem slow start laptop take minimum 5min overal bad experi dont buy laptop worst laptop basic use also\n Negative 35 delivery fast first day display problem slow laptop minimum overall bad experience laptop worst laptop basic use
920 Good for college students and for home use.. like browsing, watching movies,some office work... For heavy games it's bit laggy.. But price to performance ratio is great.....\n good colleg student home use like brows watch moviessom offic work heavi game bit laggi price perform ratio great\n Positive 28 good college students home use movies office work heavy games bit laggy price performance ratio great
921 Totally satisfied with my purchase. Only issue is built quality it’s just serve the purpose.\n total satisfi purchas issu built qualiti it’ serv purpose\n Neutral 15 satisfied purchase only issue quality purpose
922 I bought this exchanging my Acer Aspire V5 intel i3 laptop since Pentium Gold processor is almost same, except for lesser L3 cache memory (3 MB to 2 MB).There is absolutely no heating or any other issues due to SSD. This fits my requirement of day to day browsing, reading, videos etc. Very good laptop for this price.Good price for old laptop & card discount from ICICI due to Diwali sale.\n bought exchang acer aspir v5 intel i3 laptop sinc pentium gold processor almost except lesser l3 cach memori 3 mb 2 mbthere absolut heat issu due ssd fit requir day day brows read video etc good laptop pricegood price old laptop card discount icici due diwali sale\n Positive 72 acer aspire v5 intel i3 laptop pentium gold processor same lesser l3 cache memory mb heating other issues ssd requirement day day browsing videos good laptop price.good price old laptop card discount icici diwali sale
923 Just few days but in love with the product ... its light and i like the large fonts on the keypad ... pre installed windows 10 and its easy to set up .. I m Loving IT ;)\n day love product light like larg font keypad pre instal window 10 easi set love \n Positive 38 few days love product light large fonts keypad windows easy
924 initial impression is excellent...light weight,thin,travel friendly.Super fast booting,due to ssd. hop this laptop last long.lets see what happen due to corse of time.\n initi impress excellentlight weightthintravel friendlysup fast bootingdu ssd hop laptop last longlet see happen due cors time\n Positive 23 initial impression excellent light weight thin friendly.super fast booting ssd laptop last long.lets corse time
925 Item as described, super fast delivery. Will review the laptop after a few weeks of use.\n item describ super fast deliveri review laptop week use\n Positive 16 item super fast delivery laptop few weeks use
926 Fast performanceWosrt display\n fast performancewosrt display\n Neutral 3 fast performancewosrt display
927 Don't buy\n dont buy\n Neutral 2
928 Great Product at a great price.\n great product great price\n Positive 6 great product great price
929 Good buy\n good buy\n Positive 2 good buy
930 Very slim ,light weight easily carry in traveling.Good battery time.....Min 5hrsFor office use best one.\n slim light weight easili carri travelinggood batteri timemin 5hrsfor offic use best one\n Positive 15 slim light weight traveling.good battery time min office best
931 It is fast, good for regular office/home work.\n fast good regular officehom work\n Positive 8 fast good regular office home work
932 The Laptop has a decent display, boots fast and does what it should for the price. However, the Microsoft Office mentioned in the listing is a 30-day trial version. However, the vendor conveniently mentions that Microsoft Office is available without providing any hints that it is a trial version.When I called up Amazon Customer Support. I was told -1. The Product only has a 30-day trial and that this has been clarified in an User Answer. There are 4 products and 3 user answers. Completely not appropriate2. I was asked to purchase the license for 8k.This is a complete cause of Deceptive Advertisements by the vendor.\n laptop decent display boot fast price howev microsoft offic mention list 30day trial version howev vendor conveni mention microsoft offic avail without provid hint trial versionwhen call amazon custom support told 1 product 30day trial clarifi user answer 4 product 3 user answer complet appropriate2 ask purchas licens 8kthi complet caus decept advertis vendor\n Positive 106 laptop decent display boots price microsoft office listing trial version vendor microsoft office available hints trial version.when amazon customer support product trial user answer products user answers appropriate2 license complete cause deceptive advertisements vendor
933 I have received it today only.. Done basic set up. Original windows 10 & Ms office 2019(Life Time).System is pretty fast in terms of booting.Those who are complaining about Ms office 2019 for 30 days, first understand how to activate Ms office 2019....1. First create your own outlook I'd like how we are creating in Gmail, Yahoo....2. Then Left side bottom search box, just type Excel and click the Excel.3. It will ask you to activate.. just click activate and enter your outlook username and password, what you have created or already having.4. Enjoy for life time..5. Meanwhile don't click office 365, bcz its not for life time...I hope you will enjoyReview after 15 daySystem is superb. It's very fast in terms of opening Ms office,GC,IE... No lagging...Those who complaining about hanging... Update the system even bios also...Once it's done you won't find the lag...Meanwhile don't expect the speed when you're booting first time...31/10/19 updateWhen I clicked ❓in the right bottom, opened HP page. Where I got the 4 updates. It seems, it's very important update for bios, Bluetooth, lan and wifi. Those who are complaining system is slow, this update may helpful...\n receiv today done basic set origin window 10 ms offic 2019life timesystem pretti fast term bootingthos complain ms offic 2019 30 day first understand activ ms offic 20191 first creat outlook id like creat gmail yahoo2 left side bottom search box type excel click excel3 ask activ click activ enter outlook usernam password creat alreadi having4 enjoy life time5 meanwhil dont click offic 365 bcz life timei hope enjoyreview 15 daysystem superb fast term open ms officegci laggingthos complain hang updat system even bio alsoonc done wont find lagmeanwhil dont expect speed your boot first time311019 updatewhen click ❓in right bottom open hp page got 4 updat seem import updat bio bluetooth lan wifi complain system slow updat may helpful\n Positive 194 today basic set original windows ms office 2019(life time).system terms booting.those ms office days ms office own outlook gmail yahoo side bottom search box type excel excel.3 outlook username password having.4 life time office life time daysystem superb fast terms ms office gc ie system bios lag speed first time updatewhen right bottom hp page updates important update bios bluetooth lan system slow update
934 Dont buy this, in 3 months of time, hard disk conked off.Laptop is pretty slow .Have to incur an expense of 5k to get a new hard disk.Amazon should have a larger period of return window for sensitive products like laptop.Actually a loss to buy this laptop from the seller.Better to go with offline stores like Croma or exclusive dealer of the brand.\n dont buy 3 month time hard disk conk offlaptop pretti slow incur expens 5k get new hard diskamazon larger period return window sensit product like laptopactu loss buy laptop sellerbett go offlin store like croma exclus dealer brand\n Positive 65 months time hard disk off.laptop slow expense new hard disk.amazon larger period return window sensitive products loss laptop seller.better offline stores croma exclusive dealer brand
935 8GB RAM + 256 GB SSD + i3Windows 10 HomeMS Office Home and Student - Lifetime ( Word + Excel + PP + OneNote )MS Office 365 - One month trialThe above features are good for this price, I got this for 28KGood for Coding and browsingthe boot time is very fast, thanks to the SSD - use your space well, Don't dump unnecessary files in your PCVery lightweightBattery backup - GoodVideo quality - Good - Integrated graphicsNot great for gamingMy Verdict - If you want a PC for coding and browsing stuff, this one is the best in the budget- No lags literallyBuy a good external drive HDD to store the stuff like movies, songs etc..Screen Quality - decentBattery Life - Very GoodLight weight\n 8gb ram 256 gb ssd i3window 10 homem offic home student lifetim word excel pp onenot ms offic 365 one month trialth featur good price got 28kgood code browsingth boot time fast thank ssd use space well dont dump unnecessari file pcveri lightweightbatteri backup goodvideo qualiti good integr graphicsnot great gamingmi verdict want pc code brows stuff one best budget lag literallybuy good extern drive hdd store stuff like movi song etcscreen qualiti decentbatteri life goodlight weight\n Positive 125 gb ram gb ssd homems office home student lifetime word excel pp onenote ms office month above features good price coding browsingthe boot time fast thanks ssd space unnecessary files pcvery lightweightbattery backup goodvideo quality good graphicsnot great gamingmy verdict pc coding browsing stuff one best budget- lags good external drive hdd stuff movies songs screen quality decentbattery life goodlight weight
936 This laptop is sleek and lightweight. The product startup post shut down is very slow. Probably because of windows 10 and just 4 GB ram. The unlocking of laptop post startup takes approximately 3 mins and is slow. The laptop is just fine for browsing and not more. You cannot take up work for heavy excel sheets or cannot play games as well. The web pages too take time to download and you will experience a lag of 30 seconds. Sound quality is better as compared to other laptops at this price. Overall just a fine product for browsing but not more.\n laptop sleek lightweight product startup post shut slow probabl window 10 4 gb ram unlock laptop post startup take approxim 3 min slow laptop fine brows cannot take work heavi excel sheet cannot play game well web page take time download experi lag 30 second sound qualiti better compar laptop price overal fine product brows more\n Positive 107 laptop sleek lightweight product startup post slow windows gb ram unlocking laptop post startup mins slow laptop fine browsing more work heavy excel sheets games web pages time lag seconds sound quality better other laptops price fine product browsing more
937 From the reviews, I purchased this laptop only to regret it later. I contacted amazon for return but they told me a 10-12 step solution to make laptop faster which I implemented. The laptop did become a tad bit faster but returned to being the speed of the first generation computers in the world.Now I am frustrated using it and would highly recommend to not buy this laptop.I don't know if Amazon can help here. My INR 30000 wasted in this utter disappointment of a product.\n review purchas laptop regret later contact amazon return told 1012 step solut make laptop faster implement laptop becom tad bit faster return speed first gener comput worldnow frustrat use would highli recommend buy laptopi dont know amazon help inr 30000 wast utter disappoint product\n Negative 86 reviews laptop amazon return step solution laptop laptop tad bit speed first generation computers world.now laptop.i amazon inr utter disappointment product
938 superb laptop with win10, ms office, all preloaded and 8gb RAM/ 256 GB SSD. Very quick to boot and no lag. Dropbox giving 27GB space free with this and One drive gives 5 gb space So all one needs is an extended warranty ( bought for 1500 on Amazson) and a optional Pendrive ( bought a 64 GB) for storing documents etc. Bought in exchange so paid Rs.23,236 ( Rs.4760 for old Sony Viao plus some SBI card discount), so really happy with my purchase. Good screen and battery backup. Only miss not having a backlit keyboard, rest all is great!\n superb laptop win10 ms offic preload 8gb ram 256 gb ssd quick boot lag dropbox give 27gb space free one drive give 5 gb space one need extend warranti bought 1500 amazson option pendriv bought 64 gb store document etc bought exchang paid rs23236 rs4760 old soni viao plu sbi card discount realli happi purchas good screen batteri backup miss backlit keyboard rest great\n Positive 101 superb laptop win10 ms office gb ram/ gb ssd quick boot lag dropbox gb space free drive gb space extended warranty amazson optional pendrive gb documents exchange rs.23,236 rs.4760 old sony viao sbi card discount happy purchase good screen battery backup miss backlit keyboard great
939 The HP laptop, 14 inch, light weight and genuine softwares is a perfect combination for anybody who is in search for a decent laptop.After couple of days of working, here is what I found,Pros:1. Windows 10 & MS-Office 2019 both genuine2. Light weight, quite handy if you have to carry it everyday3. Island keys for keyboard, if you have a lot of typing as daily core then it works very smoothly4. Alphabets are engraved with broader font size5. Decent display, webcam and battery life of about 3-4 hCons:1. The smokey gray colour of the lappy is certainly hopeless so that you think to return it on the same grounds, jet black could be excellent option which seems to be unavailable at the moment on Amazon with the present configuration2. Performance is bit on the slower side considering the configuration though addition 4 GB RAM can boost it. However, not a serious problem3. Hardware though light weight seems fragile and of low quality4. Not for heavy gamersVerdict:Certainly value for money. I've reduced two stars for the design of the lappy hardware otherwise perfect companion at the cost.\n hp laptop 14 inch light weight genuin softwar perfect combin anybodi search decent laptopaft coupl day work foundpros1 window 10 msoffic 2019 genuine2 light weight quit handi carri everyday3 island key keyboard lot type daili core work smoothly4 alphabet engrav broader font size5 decent display webcam batteri life 34 hcons1 smokey gray colour lappi certainli hopeless think return ground jet black could excel option seem unavail moment amazon present configuration2 perform bit slower side consid configur though addit 4 gb ram boost howev seriou problem3 hardwar though light weight seem fragil low quality4 heavi gamersverdictcertainli valu money ive reduc two star design lappi hardwar otherwis perfect companion cost\n Positive 186 hp laptop inch light weight genuine softwares perfect combination search decent laptop.after couple days working pros:1 windows ms office genuine2 light weight handy island keys keyboard lot typing daily core smoothly4 alphabets broader font size5 decent display webcam battery life hcons:1 smokey gray colour lappy hopeless same grounds jet black excellent option unavailable moment amazon present configuration2 performance bit slower side configuration addition gb ram serious problem3 hardware light weight fragile low quality4 heavy gamersverdict value money stars design lappy hardware perfect companion cost
940 In the first 20 days mouse was not working had to open the laptop and got fixed easily but what's the point? Also I beleive the HP quality is gone down. This laptop screen does not open much its just till 90 degree. Also the original pro e shown is high and then it make you feel as if they are giving you high discount but it's the actual price.. Not happy with the quality\n first 20 day mous work open laptop got fix easili what point also beleiv hp qualiti gone laptop screen open much till 90 degre also origin pro e shown high make feel give high discount actual price happi quality\n Neutral 76 first days mouse laptop point hp quality laptop screen degree original e high high discount actual price happy quality
941 Do not buy hp products... Service is just waste.. To replace a faulty part already 20 days over without any further updates.. This is my experience and if you buy it.. You can experience it also..\n buy hp product servic wast replac faulti part alreadi 20 day without updat experi buy experi also\n Neutral 36 hp products service waste faulty part days further updates experience
942 I have taken this laptop 3 months back, and it was quite horrible in the beginning.The speed was so slow that even I needed to wait around 30-40 secs to open a small size excel file. I even tried contacting hp but did not get much help as it was screen sharing session.I consulted one of my friend to it, he helped me out in increasing laptop's speed, he actually removed all unwanted/unnecessary software which were pre installed. Like, McAfee (Not needed when you already have built in Windows defender), some unwanted game software and then he did fragmentation in order to utilize space holes in memory.It really worked and I am able to use the software which I need in a quick of time.You can try this to increase the system performance. Hope this will help you out!\n taken laptop 3 month back quit horribl beginningth speed slow even need wait around 3040 sec open small size excel file even tri contact hp get much help screen share sessioni consult one friend help increas laptop speed actual remov unwantedunnecessari softwar pre instal like mcafe need alreadi built window defend unwant game softwar fragment order util space hole memoryit realli work abl use softwar need quick timey tri increas system perform hope help out\n Positive 139 laptop months horrible beginning.the speed slow secs small size file hp much help screen session.i friend laptop speed unwanted unnecessary software mcafee windows defender unwanted game software fragmentation order space holes memory.it able software quick system performance
943 This is one of the best laptop in this price range, also there is some confusion related to MS office trail version, i purchased this laptop 2 days back and i conform it has MS office 2019 student version for life time free.Just go for this!!!!!!!!!\n one best laptop price rang also confus relat ms offic trail version purchas laptop 2 day back conform ms offic 2019 student version life time freejust go this\n Positive 46 best laptop price range confusion ms office trail version laptop days ms office student version life time free.just
944 I hate the thing that in the ad they say Microsoft Office is free where as it is a silly one month trial for that its not worth it far more better options available please either provide the lifetime MSO or else my order is up for return\n hate thing ad say microsoft offic free silli one month trial worth far better option avail pleas either provid lifetim mso els order return\n Positive 48 thing ad microsoft office free silly month trial worth better options available lifetime mso order return
945 I am a software professional and I like this product for its light weight and faster booting time. However I can not like its camera quality. it is very poor. After 4 days when I booted it started its own updating of BIOS straight from HP and for reasons I could not understand . At the same time its OS windows updated itself which is not a surprise. Some of its claimed features like integrating with my mobile on an instant basis is NOT happening even after several attempts by me , which is not surprising considering Windows commercial nature and its cunning features. I do not know for what reasons but sometimes it suddenly loses its contact to internet by wi-fi which feature I am using on regular basis as a default one. I bought it because its has MS OFFICE which updates itself because it has come loaded with it. Otherwise Microsoft breaks your computer if you had loaded it from your friends CD. I tis very fast ,very light and jet black colour is very attractive. Arrived one day before in good condition but they should have supplied a bag for free.\n softwar profession like product light weight faster boot time howev like camera qualiti poor 4 day boot start updat bio straight hp reason could understand time os window updat surpris claim featur like integr mobil instant basi happen even sever attempt surpris consid window commerci natur cun featur know reason sometim suddenli lose contact internet wifi featur use regular basi default one bought ms offic updat come load otherwis microsoft break comput load friend cd ti fast light jet black colour attract arriv one day good condit suppli bag free\n Positive 198 software professional product light weight faster booting time camera quality poor days own updating bios hp reasons same time os windows surprise features mobile instant basis several attempts surprising windows commercial nature cunning features reasons contact wi fi feature regular basis default one ms office microsoft computer friends cd fast light jet black colour attractive day good condition bag free
946 Pros:-Really nice laptop-Quite fast. Boots in less than 10 seconds.-Screen quality is decent.-Battery last more than 6-7 hours on medium brightness. Average usage-Sound is satisfactory.-Value for moneyCons:-Cheap plastic body. I am scared to carry anywhere.-In less than 1 month, print on keys is faded. Poor quality print.-Webcam quality is pathetic. It's like a vga camera-Adapter is heavy. Almost weighs 70% weight of laptop. Beats the purpose of portability.\n prosreal nice laptopquit fast boot less 10 secondsscreen qualiti decentbatteri last 67 hour medium bright averag usagesound satisfactoryvalu moneyconscheap plastic bodi scare carri anywherein less 1 month print key fade poor qualiti printwebcam qualiti pathet like vga cameraadapt heavi almost weigh 70 weight laptop beat purpos portability\n Positive 68 nice laptop boots less quality last more hours medium brightness average usage sound moneycons:-cheap plastic body scared anywhere.-in less month print keys poor quality print.-webcam quality pathetic vga camera adapter heavy % weight laptop purpose portability
947 Display very poor qualityBuild quality poor just poor plasticKeyboard not so softPerformance averageAs a brand HP it's look like so poorIf you are paying 27k or 29k for this laptop you should go some higher range laptop with good full hd display if IPS is the best.If looking for normal work go with lower range with less RAM but you will better display keyboard and build quality.But don't buy this display is jerk.\n display poor qualitybuild qualiti poor poor plastickeyboard softperform averagea brand hp look like poorif pay 27k 29k laptop go higher rang laptop good full hd display ip bestif look normal work go lower rang less ram better display keyboard build qualitybut dont buy display jerk\n Negative 73 poor qualitybuild quality poor poor plastickeyboard softperformance brand poorif 27k 29k laptop higher range laptop good full hd display ips best.if normal work lower range less ram keyboard display jerk
948 Pro: In exchange i got this lappy with i3 7th gen, 256gb ssd, 8gb ram and original win10 & ms offic, weight 1.4kg @ ₹24200/-. In this price i consider it worthy of purchase. Looks of the laptop is also good.Cons: Poor web cam, Screen quality is not good, its avg, not backlight keyboard & speaker doesnt produce bass much.Overall all looking at price and the hardware specs i m very happy. Photoshop & video editor works fine. Good for student & office going people. I switched from asus x200ma to hp 14q.As per configuration of this hp 14q its really fast. Boots up in 2-3sec.\n pro exchang got lappi i3 7th gen 256gb ssd 8gb ram origin win10 ms offic weight 14kg ₹24200 price consid worthi purchas look laptop also goodcon poor web cam screen qualiti good avg backlight keyboard speaker doesnt produc bass muchoveral look price hardwar spec happi photoshop video editor work fine good student offic go peopl switch asu x200ma hp 14qa per configur hp 14q realli fast boot 23sec\n Positive 106 pro exchange lappy i3 7th gen gb ssd gb ram original win10 ms offic weight kg price worthy purchase looks laptop good.cons poor web cam screen quality good avg backlight keyboard speaker bass much.overall price hardware specs m happy photoshop video editor good student office people asus x200ma hp configuration hp boots
949 its been almost 4 hours I am using this Laptop and trust me I am loving every bit of it, its handy, looks cool, sleek, its beautiful, its light yet super fast. battery charges quick tons of good things, 256GB SSD and 8 GB of RAM are the main highlights the only thing that could have been better is the screen but then its under 30000 so not a big deal HD+ display is still good enough.thumbs up and thank you HP, thank you Amazon.\n almost 4 hour use laptop trust love everi bit handi look cool sleek beauti light yet super fast batteri charg quick ton good thing 256gb ssd 8 gb ram main highlight thing could better screen 30000 big deal hd display still good enoughthumb thank hp thank amazon\n Positive 85 hours laptop bit handy cool sleek beautiful light battery charges quick tons good things gb ssd gb ram main highlights only thing better screen under big deal hd+ display good enough.thumbs hp amazon
950 Didn't worked like new laptop even 1 day . From the date of purchase it didn't worked well as it has very very slow performance and i contacted hp support many times but they did nothing and i myself tried to reset it and failed then gone to hp care and thry said that window is corrupted u have to pay rs. 400 for cloud recovery, i have to pay for service even in warranty,wtf is this?? Worst experience with hp. If you face u any problem on 1st or second day then pls return it. Other wise u will get irritated from hp service.😑\n didnt work like new laptop even 1 day date purchas didnt work well slow perform contact hp support mani time noth tri reset fail gone hp care thri said window corrupt u pay rs 400 cloud recoveri pay servic even warrantywtf worst experi hp face u problem 1st second day pl return wise u get irrit hp service😑\n Negative 105 new laptop day date purchase slow performance hp many times hp thry window rs cloud recovery service warranty wtf worst experience hp problem 1st second day other wise u irritated hp service
951 I bought this laptop especially for the reason that it had MS Office included. Apparently, the procedure to activate MS office is to call HP customer care and they will take the remote connection and activate it.Its been 2 weeks since laptop is delivered and I have made some 10+ calls to HP customer care each of which is of 30 min+ duration and still, the MS office is not activated yet.Terrible experience after buying a brand new laptop from HP.\n bought laptop especi reason ms offic includ appar procedur activ ms offic call hp custom care take remot connect activ itit 2 week sinc laptop deliv made 10 call hp custom care 30 min durat still ms offic activ yetterr experi buy brand new laptop hp\n Positive 81 laptop reason ms office procedure ms office hp customer care remote connection it.its weeks laptop hp customer min+ duration ms office yet.terrible experience brand new laptop hp
952 Thin and light weight , this laptop is quite good . Performance is also good. Windows 10 work smooth. The set up is automatic and very easy. The display is not that great but for the price point quite acceptable. Overall a good buy.\n thin light weight laptop quit good perform also good window 10 work smooth set automat easi display great price point quit accept overal good buy\n Positive 44 thin light weight laptop good performance good windows work set automatic easy display great price point acceptable good buy
953 For the price this is the best SSD laptop one can find buying a laptop with an HDD is just naive when u can get tons of storage using an external drive. The screen is also decent and much better than I expected but would have preferred a full HD display. Battery life is poor as one gaming session drains the battery low. The laptop is quite light and comfortable to use. The camera is poor to say the least.\n price best ssd laptop one find buy laptop hdd naiv u get ton storag use extern drive screen also decent much better expect would prefer full hd display batteri life poor one game session drain batteri low laptop quit light comfort use camera poor say least\n Positive 80 price best ssd laptop laptop hdd naive tons storage external drive screen decent better full hd display battery life poor gaming session battery low laptop light comfortable camera poor least
954 Been using it since 1week and its working fine. Display is good, sound quality is superb, takes a few seconds to boot and it functions very quick and smoothly because it has ssd which is the biggest plus point. I didn't find the battery life very long lasting but it gets charged soon. It met my requirements both in work and entertainment purpose. Overall its a go for it product at this price range.\n use sinc 1week work fine display good sound qualiti superb take second boot function quick smoothli ssd biggest plu point didnt find batteri life long last get charg soon met requir work entertain purpos overal go product price range\n Positive 74 display good sound quality superb few seconds boot quick ssd biggest plus point battery life requirements work entertainment purpose go product price range
955 Excellent value for money. Super fast boot thanks to ssd. i3 processor 8 gb ram 256 gb ssd.. Win 10 os.. Ms office 2019 home and student included.. Great deal!!\n excel valu money super fast boot thank ssd i3 processor 8 gb ram 256 gb ssd win 10 os ms offic 2019 home student includ great deal\n Positive 30 excellent value money fast boot thanks ssd i3 processor gb ram gb ssd win os ms office home student great deal
956 Unbelievable laptop, for this price point there is no match available. Sleek, light weight, super fast. No point spending large sum of money on other brand. This by far one of the best product for this price.\n unbeliev laptop price point match avail sleek light weight super fast point spend larg sum money brand far one best product price\n Positive 37 unbelievable laptop price point match available sleek light weight point large sum money other brand best product price
957 CONS -Its just a day old laptop but start showing its signature of slow processing..It takes more time than usual to start and shut the PC and also sometime it slows down in responding to the Feed Input.Display Quality - I m bit worried about the display quality as gentle press at the back of display can be seen on Display with merge of color at the spot (when pressed).Pros -Battery life is Quiet Good (upto 5-6 hours) N can be Fully charged in 1.5 hoursSpeaker Quality is GoodLight in Weight n Compact in SizeI will rate it 3.5 Star based on 2 days of Usage.\n con day old laptop start show signatur slow processingit take time usual start shut pc also sometim slow respond feed inputdisplay qualiti bit worri display qualiti gentl press back display seen display merg color spot pressedpro batteri life quiet good upto 56 hour n fulli charg 15 hoursspeak qualiti goodlight weight n compact sizei rate 35 star base 2 day usage\n Positive 106 cons day old laptop signature slow processing more time usual pc feed input.display quality i m bit worried display quality gentle press back display display merge color spot pressed).pros life quiet good upto hours hoursspeaker quality goodlight weight n compact sizei star days usage
958 Build quality is great and super thin laptop. I got this in 1 day andPros:SSD M.2 NVMe PCIe type8 GB Ram DDR4Core i3 7th Gen with 3MB Cache3 cell batterySuper thin body and lightweightCons:No fingerprint ( Not mandatory required to everyone)No Type C port ( Very few people use as type c to type c cable are not common)Lookwise it is simple.Recommend!\n build qualiti great super thin laptop got 1 day andprosssd m2 nvme pcie type8 gb ram ddr4core i3 7th gen 3mb cache3 cell batterysup thin bodi lightweightconsno fingerprint mandatori requir everyoneno type c port peopl use type c type c cabl commonlookwis simplerecommend\n Positive 62 quality great super thin laptop day andpros ssd m.2 nvme pcie type8 gb ram ddr4core i3 7th gen mb cache3 cell batterysuper thin body lightweightcons fingerprint mandatory everyone)no type c port few people type c c cable common)lookwise simple.recommend
959 The product ie i3 laptop two numbers i got from you is not working properly. Speed also very poor. Only security window opens then only curser visible. Window screen not opens . I wish to return the products\n product ie i3 laptop two number got work properli speed also poor secur window open curser visibl window screen open wish return products\n Neutral 42 product i3 laptop numbers speed poor security window visible window screen products
960 See....this laptop is not for watching movies, gaming etc...you can use it for day to day work and it will work really fast and good... specially when it's super fast while window is starting and shutting down...8 Gb RAM and 256SSD is doing the stuff...DO NOT BUY IF YOU ARE DOING THE HEAVY USAGE... KEEP IT SIMPLE\n seethi laptop watch movi game etcyou use day day work work realli fast good special super fast window start shut down8 gb ram 256ssd stuffdo buy heavi usag keep simple\n Positive 57 laptop movies day day work good fast window gb ram 256ssd stuff heavy usage simple
961 This is the new model by HP and got the deal in Great Indian Festival at 29,990. No issues in Warranty, Windows 10, Office. All are original. Laptop boots in 5-7sec due to its SSD feature.If you are planning to buy a laptop for delicate purposes like office work, watching movies, youtube, listening music, this is the perfect choice. Don't go with normal HDD laptops, it will be slower afterwards because of its mechanical functionality.I will modify my review after 7 days of usage.\n new model hp got deal great indian festiv 29990 issu warranti window 10 offic origin laptop boot 57sec due ssd featureif plan buy laptop delic purpos like offic work watch movi youtub listen music perfect choic dont go normal hdd laptop slower afterward mechan functionalityi modifi review 7 day usage\n Positive 84 new model hp deal great indian festival issues warranty windows office original laptop boots ssd laptop delicate purposes office work movies youtube music perfect choice normal hdd laptops slower mechanical functionality.i review days usage
962 Please don't buy this Model. It's just waste of your money. I bought this with so much expectation but all gone. Only 2 things are good in this one is light weight and other is battery life rest nothing to tell.\n pleas dont buy model wast money bought much expect gone 2 thing good one light weight batteri life rest noth tell\n Positive 41 model waste money much expectation things good one light weight other battery life
963 Well the laptop is quite good. Battery life is average... It lasts about 4-5 hours. It is amazingly light. Laptop looks very premium. Processing is also good. But it is ideal for casual use. No problem is faced during web browsing, watching movies, editing documents, etc. Overall it is a good one. And of course it is "value for money".\n well laptop quit good batteri life averag last 45 hour amazingli light laptop look premium process also good ideal casual use problem face web brows watch movi edit document etc overal good one cours valu money\n Positive 60 laptop good battery life average hours light laptop premium processing good ideal casual use problem web browsing movies documents good one course value money
964 After seeing lots of positive and negative reviews I decided to purchase this one. Its working fine. Battery back up good, screen display good, easy to carry because of small size and lightweight. Faster because of having SSD. Overall satisfied.\n see lot posit neg review decid purchas one work fine batteri back good screen display good easi carri small size lightweight faster ssd overal satisfied\n Positive 40 lots positive negative reviews one battery good screen display good easy small size lightweight ssd satisfied
965 Operating sysytem is little bit slow..... Reboot tine takes time.Body quality is soft and not firm like dell.One has to handle with care. Battery life is good and sound also good.But price wise the product is ok....\n oper sysytem littl bit slow reboot tine take timebodi qualiti soft firm like dellon handl care batteri life good sound also goodbut price wise product ok\n Positive 37 sysytem little bit slow reboot tine time.body quality soft firm dell.one care battery life good sound good.but price product ok
966 Not a good product at all. Very slow. Ram cannot be upgraded over the 4gb slot. Lots of issues in slowness and had to call HP technician to take a look at it.\n good product slow ram cannot upgrad 4gb slot lot issu slow call hp technician take look it\n Positive 33 good product slow ram gb slot lots issues slowness hp technician look
967 This is nice laptop.All functions available like MS office with lifetime validity..Sound quality is very superb .I think HP should be preferred over Dell laptop.simple 4 start for performance.Highly recommended for Home use and normal routine work this is best laptop.\n nice laptopal function avail like ms offic lifetim validitysound qualiti superb think hp prefer dell laptopsimpl 4 start performancehighli recommend home use normal routin work best laptop\n Positive 41 nice laptop.all functions available ms office lifetime validity sound quality superb hp dell laptop.simple start home use normal routine work best laptop
968 Microsoft office (Excel,word, PowerPoint)is lifetime valid. Don't open office at first- create a Microsoft outlook id and the. Login with that, otherwise u get only trial version.Screen is average,speed excellent boots in seconds. Light weight easy to carry is the highlight.\n microsoft offic excelword powerpointi lifetim valid dont open offic first creat microsoft outlook id login otherwis u get trial versionscreen averagespe excel boot second light weight easi carri highlight\n Positive 41 microsoft office excel word powerpoint)is lifetime valid office first- microsoft outlook login only trial version.screen average speed excellent boots seconds light weight highlight
969 Very good product. Thin and lightweight. Battery backup is very good. I am writing this review after using the product for more than two weeks.\n good product thin lightweight batteri backup good write review use product two weeks\n Positive 26 good product thin lightweight battery backup good review product more weeks
970 Got an awesome deal on Amazon Great Indian Sale. The laptop is compact with awesome performance at this price point. The inclusion of an SSD is an added attraction since the boot time is just 10 secs.\n got awesom deal amazon great indian sale laptop compact awesom perform price point inclus ssd ad attract sinc boot time 10 secs\n Positive 37 awesome deal amazon great indian sale laptop compact awesome performance price point inclusion ssd attraction boot time secs
971 Go for it ...Ms office lifetime available without any chargesWindows 10 orginal ( i.e full security)Portable and light weight with average screen quality😉\n go ms offic lifetim avail without chargeswindow 10 orgin ie full securityport light weight averag screen quality😉\n Neutral 23 ms office lifetime available orginal i.e full security)portable light weight average screen quality
972 This is a very light weight and travel friendly laptop. It process fast and has good memory space. It can be used by professionals working on basic applications such as MS office. This system also turns to be college friendly. It has a smooth keyboard and the video quality also seems to be good.\n light weight travel friendli laptop process fast good memori space use profession work basic applic ms offic system also turn colleg friendli smooth keyboard video qualiti also seem good\n Positive 54 light weight friendly laptop good memory space professionals basic applications such ms office system college friendly smooth keyboard video quality good
973 Very slow and keeps hanging. Only for regular student work and doesn’t involve huge applications. The HP service is very bad. Though displays on-site warranty they insist to run around to service center. Don’t recommend to buy this product at all.\n slow keep hang regular student work doesn’t involv huge applic hp servic bad though display onsit warranti insist run around servic center don’t recommend buy product all\n Positive 41 slow regular student work t huge applications hp service bad displays site warranty service center don t product
974 Laptop is very slow and hangs in between. Dont buy. I have never used such a bad laptop ever in my life. I wish I could return it within time limit. Wasted my money\n laptop slow hang dont buy never use bad laptop ever life wish could return within time limit wast money\n Positive 34 laptop slow bad laptop life time limit money
975 I really wanted a laptop which will be fast enough to run multiple programs but not games.This product is perfect for me\n realli want laptop fast enough run multipl program gamesthi product perfect me\n Positive 22 laptop multiple programs product perfect
976 Seller doest gave invoice in the packet, im doubting authenticity of the product.\n seller doest gave invoic packet im doubt authent product\n Negative 13 seller doest invoice packet authenticity product
977 Excellent entry level notebook, the SSD is so much faster than a SATA. The build is okay.\n excel entri level notebook ssd much faster sata build okay\n Positive 17 excellent entry level notebook ssd faster sata build okay
978 Charger of the laptop is not working and no any helpline no. was provided for complain as well as service. However, the no. of available on the website of hp is not given response.\n charger laptop work helplin provid complain well servic howev avail websit hp given response\n Negative 34 charger laptop helpline complain service available website hp response
979 Pros: Light weight, good battery life, 4GB RAM and 1TB HDDCons: Processor speed slower than expected.Remark: Value for money.\n pro light weight good batteri life 4gb ram 1tb hddcon processor speed slower expectedremark valu money\n Positive 19 pros light weight good battery life gb ram tb hddcons processor speed slower expected.remark value money
980 System is pretty slow. Takes lot of time to boot.This is for basic usage of the laptop. Not worth for the money.\n system pretti slow take lot time bootthi basic usag laptop worth money\n Positive 22 system slow lot time boot.this basic usage laptop worth money
981 I have just received the product and MSO is not activated by HP. Also after 3hrs of online session still same thing. If in product it's mentioned that MSO is included then Why not pre-installed in it. Facing lot's of issues with service team. DELL is better in service\n receiv product mso activ hp also 3hr onlin session still thing product mention mso includ preinstal face lot issu servic team dell better service\n Positive 49 product mso hp online session same thing product mso installed lot issues service team dell better service
982 Vert worst service from hp asking for replacement not giving bad bad bad dont purchase from hp any more..... I purchase 2 qty paying 29000 ,,,they are least bother to help i would have taken frm retailpc is very very slow\n vert worst servic hp ask replac give bad bad bad dont purchas hp purchas 2 qti pay 29000 least bother help would taken frm retailpc slow\n Negative 41 vert worst service hp replacement bad bad bad hp qty least bother frm retailpc slow
983 Light weight. Stylish. Good battery life. Fast chargingOnly issue little bit slow.\n light weight stylish good batteri life fast chargingonli issu littl bit slow\n Positive 12 light weight stylish good battery life issue little bit slow
984 New HP laptop is very slow... I haven't installed any applications yet but it's really slow.. I think I have gone back 20 years where we use to have very less ram.. having 4 gb ram and using application like word also works really slow\n new hp laptop slow havent instal applic yet realli slow think gone back 20 year use less ram 4 gb ram use applic like word also work realli slow\n Positive 45 new hp laptop slow applications slow years ram gb application word slow
985 The 8GB ram and 256 SSD HD results in the laptop being extremely fast. Light weight. Easy and convenient for frequent travellers. Speakers are good for this price range.Value for money at 28k with SBI card discount.\n 8gb ram 256 ssd hd result laptop extrem fast light weight easi conveni frequent travel speaker good price rangevalu money 28k sbi card discount\n Positive 37 gb ram ssd hd results laptop fast light weight easy convenient frequent travellers speakers good price range.value money 28k sbi card discount
986 A light weight laptop for routine use. Came loaded with Windows 10 and MS Office.\n light weight laptop routin use came load window 10 ms office\n Neutral 15 light weight laptop routine use windows ms office
987 Light weight portable laptopSince SSD technology boots the system faster no lag while using multiple applications5 hrs of battery life I got with multi processing\n light weight portabl laptopsinc ssd technolog boot system faster lag use multipl applications5 hr batteri life got multi processing\n Negative 25 light weight portable laptopsince ssd technology system lag multiple applications5 hrs battery life multi processing
988 It looks and feels premium and quite handy with its light weight. The screen is fabulous and the mouse pad has a soft touch. Overall in love with this machine. Opt for Office H&S 2019 as it is only 1000 extra if bought along with the laptop.\n look feel premium quit handi light weight screen fabul mous pad soft touch overal love machin opt offic hs 2019 1000 extra bought along laptop\n Positive 47 premium handy light weight screen fabulous mouse pad soft touch love machine opt office h&s extra laptop
989 The product is really good and value for money - reasonable price.However the vendor didn’t deliver MS office home edition license key. Awaiting the vendor to provide the same at the earliest.\n product realli good valu money reason pricehowev vendor didn’t deliv ms offic home edit licens key await vendor provid earliest\n Positive 32 product good value money reasonable price.however vendor didn t ms office home edition license key vendor same earliest
990 Just after 15 days of receiving laptop it is not starting, please help on this, local repair said give back this laptop to AMAZON and product igot defects. Refer photo, it's not starting and requesting to replace the laptop\n 15 day receiv laptop start pleas help local repair said give back laptop amazon product igot defect refer photo start request replac laptop\n Positive 39 days laptop local repair laptop amazon product igot defects photo laptop
991 Very happy with the performance of the laptop... lightweight...good speed and worth the money\n happi perform laptop lightweightgood speed worth money\n Positive 14 happy performance laptop lightweight good speed worth money
992 Viewing angles are worst.Option of Nvme m.2 SSD is good but not performing like.Overall performance is good, but it should be better in this price range.\n view angl worstopt nvme m2 ssd good perform likeoveral perform good better price range\n Positive 26 angles worst.option nvme ssd good like.overall performance good better price range
993 No charger, operating system is very slow and no battery backupNot satisfied with the serviceVisited by technician and confirmed to returnWant my money back and wants to return the laptop\n charger oper system slow batteri backupnot satisfi servicevisit technician confirm returnw money back want return laptop\n Positive 30 charger system slow battery backupnot technician money laptop
994 For the price, it is really good. real lightweight. Decent battery and screen. Very Good option option for basic computing/browsing needs.\n price realli good real lightweight decent batteri screen good option option basic computingbrows needs\n Positive 21 price good real lightweight decent battery screen good option option basic computing browsing needs
995 A very good laptop.... 8 gb ram & 256 ssd makes it fast and smoother... HD display & battery backup upto 4 hrs... Good for students but not for gaming 😁\n good laptop 8 gb ram 256 ssd make fast smoother hd display batteri backup upto 4 hr good student game 😁\n Positive 31 good laptop gb ram ssd fast smoother hd display battery backup upto hrs good students gaming
996 Battery not goodSystem hangs many times\n batteri goodsystem hang mani times\n Neutral 6 battery goodsystem many times
997 Good Buy. Solved my Requirement\n good buy solv requirement\n Positive 5 good buy requirement
998 A good pieceRAM needs to be enhanced\n good pieceram need enhanced\n Positive 7 good pieceram
999 Screen is very good and laptop gives 7 hr talk time and becouse of light weight i can take every where\n screen good laptop give 7 hr talk time becous light weight take everi where\n Positive 21 screen good laptop hr talk time becouse light weight
1000 Wish it was much faster but since this was for my kid, it works fine..!\n wish much faster sinc kid work fine\n Positive 15 faster kid fine
1001 purchased this in Amazon promotion (biggest mistake), laptop gets stuck and not able to click or type anything, Amazon not able to fix, neither returning the product\n purchas amazon promot biggest mistak laptop get stuck abl click type anyth amazon abl fix neither return product\n Positive 27 amazon promotion biggest mistake laptop stuck able amazon able product
1002 Shorter battery life, Cheap plastic build quality and bloatware are downside. Low price, comfortable weight are upside.\n shorter batteri life cheap plastic build qualiti bloatwar downsid low price comfort weight upside\n Positive 17 shorter battery life cheap plastic build quality bloatware downside low price comfortable weight upside
1003 Screen quality is a let otherwise laptop is fast and responsive, happy with the purchase. Apps run smoothly without much hiccups.\n screen qualiti let otherwis laptop fast respons happi purchas app run smoothli without much hiccups\n Neutral 21 screen quality let fast responsive happy purchase apps much hiccups
1004 I have hardly loaded anything on my laptop. Just using it for basic MS office or Browsing, but Laptop is very slow. Its just a month old , but it hangs. Very disappointed with this product.\n hardli load anyth laptop use basic ms offic brows laptop slow month old hang disappoint product\n Negative 36 laptop basic ms office browsing laptop slow month old disappointed product
1005 Nice product. Excellent performance. Would have liked more if the hard drive is partitioned in two or three drives instead of a single drive.\n nice product excel perform would like hard drive partit two three drive instead singl drive\n Positive 24 nice product excellent performance more hard drive drives single drive
1006 Damaged product delivered. Scratches on one corner of the laptop. Laptop performance/speed is not okay. Tools long time for processing. Not satisfied with the laptop performance\n damag product deliv scratch one corner laptop laptop performancespe okay tool long time process satisfi laptop performance\n Positive 26 damaged product corner laptop laptop performance speed okay tools long time processing satisfied laptop performance
1007 Performance is good\n perform good\n Positive 3 performance good
1008 Using the laptop since last 3 days although the look is average other features are good. It seems little slow however it is value for money.\n use laptop sinc last 3 day although look averag featur good seem littl slow howev valu money\n Positive 26 laptop last days look average other features good little slow value money
1009 This is a very light and compact pc you can take it to anywhere at office, college or on a journey. Beginners and for those who wants to learn ms office should go with this.\n light compact pc take anywher offic colleg journey beginn want learn ms offic go this\n Positive 36 light compact pc office college journey beginners ms office
1010 Overall performance is good.\n overal perform good\n Positive 4 overall performance good
1011 Recommended for home users it's has original windows and office 2019 student edition\n recommend home user origin window offic 2019 student edition\n Positive 13 home users original windows office student edition
1012 It's a thin light weight laptop with a good configuration that we are in need. Useful for frequent traveller. It's worth for the money we spent.\n thin light weight laptop good configur need use frequent travel worth money spent\n Positive 26 thin light weight laptop good configuration need useful frequent traveller worth money
1013 Good for daily use by students and professors for basic use. Thin n light weight. Good battery life. Thankyou Amazon for fast delivery\n good daili use student professor basic use thin n light weight good batteri life thankyou amazon fast delivery\n Positive 23 good daily use students professors basic use thin light weight good battery life amazon fast delivery
1014 Great product! There is no any other laptop like this on that price....\n great product laptop like price\n Positive 13 great product other laptop price
1015 This machine was supposed to come with Licensed Microsoft Office 2019 for student but I got expired version of Office 365 asking for Office product key.\n machin suppos come licens microsoft offic 2019 student got expir version offic 365 ask offic product key\n Neutral 26 machine licensed microsoft office student version office office product key
1016 Laptop battery and performance super..\n laptop batteri perform super\n Positive 5 laptop battery performance super
1017 Initial Review:Worth for every every penny, Light Weight\n initi reviewworth everi everi penni light weight\n Neutral 8 initial review worth penny light weight
1018 Stylish, sleek and elegant.\n stylish sleek elegant\n Positive 4 stylish sleek elegant
1019 It is amazig laptop. Extremely quock in boot. Plastic quality could have been better. Screen quality average.\n amazig laptop extrem quock boot plastic qualiti could better screen qualiti average\n Positive 17 amazig laptop boot plastic quality better screen quality average
1020 The laptop is awesome in its category...\n laptop awesom category\n Neutral 7 laptop awesome category
1021 screen quality is not so good only hd dispaly ....performance is very good light weight ....feel premium look ... recomend to buy this one ..\n screen qualiti good hd dispali perform good light weight feel premium look recomend buy one \n Positive 25 screen quality good hd dispaly performance good light weight premium look one
1022 Dead slow. To open a browser will.take 1 minute , to open any file it is taking more than a minute\n dead slow open browser willtak 1 minut open file take minute\n Negative 21 slow browser will.take minute file more minute
1023 Little bit slow for a new laptop. Otherwise, overall good product. Very light so easy to carry along.\n littl bit slow new laptop otherwis overal good product light easi carri along\n Positive 18 little bit slow new laptop overall good product light easy
1024 Don't go for this product, worst ever, screen is worst mainly\n dont go product worst ever screen worst mainly\n Positive 11 product screen worst
1025 have used for a day. No problem with its performance. Fast boot. No lag in apps.\n use day problem perform fast boot lag apps\n Negative 16 day problem performance fast boot lag apps
1026 Screen quality is not as expectedBattery for 4 hrs onlyLight weight easy to handlePerfect in traveling\n screen qualiti expectedbatteri 4 hr onlylight weight easi handleperfect traveling\n Neutral 16 screen quality expectedbattery onlylight weight
1027 Good to buy when offer is on. As per my need it's good. Easy to install and fast as per my requirement.\n good buy offer per need good easi instal fast per requirement\n Positive 22 good offer need good easy requirement
1028 Bought it for 28 k. Light weight nd good battery life. Last for atleast 4 to 5 hrs. Depends on the usage\n bought 28 k light weight nd good batteri life last atleast 4 5 hr depend usage\n Positive 23 k. light weight nd good battery life last atleast hrs usage
1029 Very light weight. Good Configuration. for this price range of good laptop.\n light weight good configur price rang good laptop\n Positive 12 light weight good configuration price range good laptop
1030 Some problem was there at first but the Amazon customer service solved it....soo happy with the product now.\n problem first amazon custom servic solv itsoo happi product now\n Negative 18 problem amazon customer service soo happy product
1031 Screen quality not so good , and weight not so light .\n screen qualiti good weight light \n Positive 12 screen quality good weight light
1032 Screen quality could be improved\n screen qualiti could improved\n Positive 5 screen quality
1033 Thoda chota h but theek h\n thoda chota h theek h\n Neutral 6 thoda chota h theek h
1034 Good product, meet my expectations.\n good product meet expectations\n Positive 5 good product expectations
1035 The laptop is perfectly good. Sleek, light-weight, good battery, fast perfomance, original windows and ms office. Best at 30k.\n laptop perfectli good sleek lightweight good batteri fast perfom origin window ms offic best 30k\n Positive 19 laptop good sleek light weight good battery fast perfomance original windows ms office best 30k
1036 It says it includes ms office. But system asking for activation code. How can i get ms office activation?\n say includ ms offic system ask activ code get ms offic activation\n Neutral 19 ms office system activation code ms office activation
1037 It's a nice buy for normal use cases. I bought the one with free office subscription. It's doing well so far and I'm satisfied\n nice buy normal use case bought one free offic subscript well far im satisfied\n Positive 24 nice buy normal use cases one free office subscription satisfied
1038 Bad performance. Very slow device. Not recommended\n bad perform slow devic recommended\n Negative 7 bad performance slow device
1039 Product was in good condition but after a month the adapter is not working...\n product good condit month adapt working\n Positive 14 product good condition month adapter
1040 Good laptop. But it has connectivity issue with wifi.\n good laptop connect issu wifi\n Positive 9 good laptop connectivity issue wifi
1041 HP brand is always good. Quick delivery.\n hp brand alway good quick delivery\n Positive 7 hp brand good quick delivery
1042 Dead Slow. Not suitable for working professionals.\n dead slow suitabl work professionals\n Negative 7 slow suitable professionals
1043 hanging problem is there\n hang problem there\n Negative 4 problem
1044 Light weight and office\n light weight office\n Neutral 4 light weight office
1045 Screen quality is worst..laptop is compact and design is not that much stylish..works good ...ssd helps a lot\n screen qualiti worstlaptop compact design much stylishwork good ssd help lot\n Positive 18 screen quality worst laptop compact design much stylish good ssd lot
1046 Can you pleace re place this laptop with 6 or 8 ram new vertion? It is very slow.\n pleac place laptop 6 8 ram new vertion slow\n Neutral 20 place laptop new vertion slow
1047 Happy with the specifications according to my requirements. It's simply awesome machine with the super design.\n happi specif accord requir simpli awesom machin super design\n Positive 16 happy specifications requirements awesome machine super design
1048 East or west leptop is the best\n east west leptop best\n Positive 7 east west leptop best
1049 excellent screen, light weight and easy to carry\n excel screen light weight easi carry\n Positive 8 excellent screen light weight easy
1050 This is a good product in low budget with great performance. Only battery life is 3 hrs.\n good product low budget great perform batteri life 3 hrs\n Positive 17 good product low budget great performance only battery life
1051 This is best offer from Amazon. Best screen quality, battery backup and light weight...\n best offer amazon best screen qualiti batteri backup light weight\n Positive 14 best offer amazon best screen quality battery backup light weight
1052 Best in price i got 26490 after discount in sale\n best price got 26490 discount sale\n Positive 10 best price discount sale
1053 Laptop is very slow in booting and also very slow in responding when multiple apps are launched\n laptop slow boot also slow respond multipl app launched\n Positive 17 laptop slow booting slow multiple apps
1054 HP always makes the same worth the trust.\n hp alway make worth trust\n Positive 8 hp same worth trust
1055 Nice product. Easy to carry and good battery life. Worth the price.\n nice product easi carri good batteri life worth price\n Positive 12 nice product easy good battery life worth price
1056 Nice laptop\n nice laptop\n Positive 2 nice laptop
1057 Quality of the laptop is very bad I had bad experience with amazon so please don’t buy laptops in amazon\n qualiti laptop bad bad experi amazon pleas don’t buy laptop amazon\n Negative 20 quality laptop bad bad experience amazon don t laptops amazon
1058 Excellence performance\n excel performance\n Positive 2 excellence performance
1059 Nice look laptop\n nice look laptop\n Positive 3 nice laptop
1060 Screen quality is goodBattery life is satisfactory\n screen qualiti goodbatteri life satisfactory\n Positive 7 screen quality goodbattery life satisfactory
1061 Go for it under 30k..Bought it for 28k..Screen quality could be better\n go 30kbought 28kscreen qualiti could better\n Positive 12 30k 28k screen quality better
1062 Excellent product,but memory is 256 gb,which should be 512 gb\n excel productbut memori 256 gbwhich 512 gb\n Positive 10 excellent product memory gb
1063 Great deal by all aspects from Amazon\n great deal aspect amazon\n Positive 7 great deal aspects amazon
1064 A very good laptop.Easy to use.Light weight too\n good laptopeasi uselight weight too\n Positive 8 good laptop.easy weight
1065 Everything fine except harddisk storage(256GB SSD)\n everyth fine except harddisk storage256gb ssd\n Positive 6 fine harddisk storage(256 gb ssd
1066 It's very slow to respond.\n slow respond\n Neutral 5 slow
1067 Screen quality is not good\n screen qualiti good\n Positive 5 screen quality good
1068 Product is good however invoice not provided by the seller.\n product good howev invoic provid seller\n Positive 10 product good seller
1069 Value for money.\n valu money\n Neutral 3 value money
1070 System is too slow and hangs some times its difficult to work with office\n system slow hang time difficult work office\n Negative 14 system slow times difficult office
1071 I liked itFragile but very good and fast product\n like itfragil good fast product\n Positive 9 itfragile good fast product
1072 24 hrs so far so good\n 24 hr far good\n Positive 6 good
1073 Thank u hp this is amezing ...... Performance is like butter ♥️😍😍\n thank u hp amez perform like butter ♥️😍😍\n Positive 12 u hp performance butter
1074 Overall good\n overal good\n Positive 2 good
1075 Its a good laptop. Working well. Genuine windows and MS Office.\n good laptop work well genuin window ms office\n Positive 11 good laptop genuine windows ms office
1076 Seller didn't give invoice nor owner's manual with the laptop...\n seller didnt give invoic owner manual laptop\n Neutral 10 seller invoice owner manual laptop
1077 Product is good for normal home use.\n product good normal home use\n Positive 7 product good normal home use
1078 Need invoice of product same is missingOverall great deal\n need invoic product missingoveral great deal\n Positive 9 invoice product same missingoverall great deal
1079 Overall good performance worthy for the price\n overal good perform worthi price\n Positive 7 overall good performance worthy price
1080 Excellent product and Quick delivery thanks amazon\n excel product quick deliveri thank amazon\n Positive 7 excellent product quick delivery thanks amazon
1081 Good design and speed\n good design speed\n Positive 4 good design speed
1082 Awesome product may try it..\n awesom product may tri it\n Neutral 5 awesome product
1083 It's excellent product as per expectations\n excel product per expectations\n Positive 6 excellent product expectations
1084 Good Product,\n good product\n Positive 2 good product
1085 Resused product is dilevered and screen also not working.\n resus product dilev screen also working\n Neutral 9 resused product dilevered screen
1086 Great product for students. Best budget laptop. I love it\n great product student best budget laptop love it\n Positive 10 great product students best budget laptop
1087 nice prodduct...value for money\n nice prodductvalu money\n Positive 4 nice prodduct value money
1088 lots of hardware issues, product is of no use.\n lot hardwar issu product use\n Neutral 9 lots hardware issues product use
1089 The touchpad is very slow and even sometimes not responding,\n touchpad slow even sometim responding\n Neutral 10 touchpad slow
1090 For regular office works, its worthy to have this\n regular offic work worthi this\n Neutral 9 regular office works worthy
1091 Quite slow in performance\n quit slow performance\n Neutral 4 slow performance
1092 the machine is very slow and not up to the expectation\n machin slow expectation\n Neutral 11 machine slow expectation
1093 Not great\n great\n Positive 2 great
1094 In one word worst laptop.\n one word worst laptop\n Negative 5 word worst laptop
1095 Performance is not upto the mark. Irritating.\n perform upto mark irritating\n Negative 7 performance mark
1096 It's hanging while Internet using. Booting very slow.\n hang internet use boot slow\n Neutral 8 internet slow
1097 Slowest Laptop humanity have ever seen!!!\n slowest laptop human ever seen\n Neutral 6 slowest laptop humanity
1098 Key buttons are not responsive. Horrible.\n key button respons horrible\n Negative 6 key buttons responsive horrible
1099 It's always hangs\n alway hangs\n Neutral 3 hangs
1100 Design & performance is v good\n design perform v good\n Positive 6 design performance good
1101 So light & good enough\n light good enough\n Positive 5 light good
1102 Work very slowHang very fast\n work slowhang fast\n Neutral 5
1103 There will must be CD drive\n must cd drive\n Neutral 6 cd
1104 System seems little bit slow\n system seem littl bit slow\n Neutral 5 system little bit slow
1105 Exclinent\n exclinent\n Neutral 1 exclinent
1106 Good choice..value for money\n good choicevalu money\n Positive 4 good choice value money
1107 Its amazing 👍\n amaz 👍\n Neutral 3 amazing
1108 Not bad option\n bad option\n Negative 3 bad option
1109 Warranty document not received\n warranti document received\n Neutral 4 warranty document
1110 Like it\n like it\n Positive 2
1111 Good product in this budget.\n good product budget\n Positive 5 good product budget
1112 Excellent laptop....\n excel laptop\n Positive 2 excellent laptop
1113 Thirdclass quality\n thirdclass quality\n Neutral 2 thirdclass quality
1114 Good laptop\n good laptop\n Positive 2 good laptop
1115 Lightest laptop ever by hp\n lightest laptop ever hp\n Neutral 5 lightest laptop hp
1116 Best budget laptop\n best budget laptop\n Positive 3 best budget laptop
1117 Scree quality is not good\n scree qualiti good\n Positive 5 scree quality good
1118 Picture quality very poor\n pictur qualiti poor\n Negative 4 picture quality poor
1119 Too costly\n costly\n Negative 2 costly
1120 According to HP it is a laptop but it falls under family of Notebook. From dimensions it should be classified as Notebook. Light weight, no DVD player and non replaceable Li-on battery. Good 2.3 GHz processor with 4 GB RAM works well. Windows 10 home opening and closing time normal. HP updates all drivers comfortably and window update works well. Box has only notebook and power chord. We have to get all other including warranty through HP website.I have loaded office pro and everything looks smooth. Display is good in some angles. Sound is ok. Very good key board and track pad. Worth buying for the price we pay.\n accord hp laptop fall famili notebook dimens classifi notebook light weight dvd player non replac lion batteri good 23 ghz processor 4 gb ram work well window 10 home open close time normal hp updat driver comfort window updat work well box notebook power chord get includ warranti hp websitei load offic pro everyth look smooth display good angl sound ok good key board track pad worth buy price pay\n Positive 109 hp laptop family notebook dimensions notebook light weight dvd player non replaceable li battery good ghz processor gb ram windows home opening closing time normal hp drivers window update box notebook power chord other warranty hp website.i office pro smooth display good angles sound ok good key board pad worth price
1121 Good product received as well be seen at description ...but it sometimes hang at when we start it , hang with chrome browser, hang in playing game, speed is slow but speed of the processor is seing 2.3 GHz but I am dissapointed because its the speed is so slow but why ???\n good product receiv well seen descript sometim hang start hang chrome browser hang play game speed slow speed processor se 23 ghz dissapoint speed slow \n Positive 53 good product description chrome browser game speed slow speed processor ghz speed slow
1122 Product was good,excellent laptop in look wise.Unhappy with Amazon facility delivery service. and one more important I got the laptop as per discription mentioned by the seller.\n product goodexcel laptop look wiseunhappi amazon facil deliveri servic one import got laptop per discript mention seller\n Positive 27 product good excellent laptop wise.unhappy amazon facility delivery service important laptop discription seller
1123 I do not recommend this if you are looking for a mid price range with at least acceptable speed! The speed is irritating!\n recommend look mid price rang least accept speed speed irritating\n Negative 23 mid price range least acceptable speed speed
1124 All is good yar\n good yar\n Positive 5 good yar
1125 Its good in this budget18720\n good budget18720\n Positive 5 good budget18720
1126 This product can be used for browsing purpose only, if you open 6-7 tabs at the same time this become worst to operate. Battery is not removable and no dvd port and if something happen then whole motherboard needs to replace.\n product use brows purpos open 67 tab time becom worst oper batteri remov dvd port someth happen whole motherboard need replace\n Negative 41 product purpose tabs same time become battery removable dvd port whole motherboard
1127 Good but not received cashback in HDFC debit cards cashback offer\n good receiv cashback hdfc debit card cashback offer\n Positive 11 good cashback hdfc debit cards cashback offer
1128 Feeling very satisfied after using this laptop.Speed is very good, body material also solid.Recommend to purchase.\n feel satisfi use laptopspe good bodi materi also solidrecommend purchase\n Positive 16 satisfied laptop.speed good body material
1129 Lapi is good . It's fulfill my requirements but where is warranty card bro?\n lapi good fulfil requir warranti card bro\n Positive 14 lapi good requirements warranty card bro
1130 Works very slow.. Apart from this there are no issues in this laptop\n work slow apart issu laptop\n Neutral 13 issues laptop
1131 The time clock battery is not working right out of the boxTerrible support... dont buy\n time clock batteri work right boxterr support dont buy\n Positive 15 time clock battery boxterrible support
1132 It's good, but I don't get warranty card,\n good dont get warranti card\n Positive 8 good warranty card
1133 Its really A light weight Notebook by HP.Overall performance is good.\n realli light weight notebook hpoveral perform good\n Positive 11 light weight notebook hp.overall performance good
1134 Not satisfied with products ..there is no invoice bill or waranty card\n satisfi product invoic bill waranti card\n Neutral 12 satisfied products invoice bill waranty card
1135 Nice product\n nice product\n Positive 2 nice product
1136 Awesome product..\n awesom product\n Neutral 2 awesome product
1137 Excellent laptop\n excel laptop\n Positive 2 excellent laptop
1138 MS Office work Slow browsing speed good some time hang up with Google ChromeMemory run out problem 😂\n ms offic work slow brows speed good time hang googl chromememori run problem 😂\n Positive 18 ms office work slow browsing speed good time google chromememory problem
1139 Speed is very slow?but whyVery bad leptop\n speed slowbut whyveri bad leptop\n Negative 7 speed slow?but whyvery bad leptop
1140 WROST, with in 7days creatng problem.\n wrost 7day creatng problem\n Negative 7 wrost creatng problem
1141 best product best price\n best product best price\n Positive 5 best product best price
1142 There was no Mouse along with the Laptop\n mous along laptop\n Neutral 8 mouse laptop
1143 Don't Bought to anyone, Because he's not replacements and refunds for this product.Battery Backup is very very poor and Laptop Hanging issues.Totally Money Waste, Kindly Go to Direct HP laptop showroom.\n dont bought anyon he replac refund productbatteri backup poor laptop hang issuestot money wast kindli go direct hp laptop showroom\n Negative 31 replacements refunds product.battery backup poor money waste hp laptop showroom
1144 Quality some low\n qualiti low\n Negative 3 quality low
1145 Very usable and compelling although a little slow that's why I replaced laptops mechanical hard drive with SSD and erased Windows and installed Linux mint 19.2, you'll definitely gonna see speed up performance boost.\n usabl compel although littl slow that replac laptop mechan hard drive ssd eras window instal linux mint 192 youll definit gonna see speed perform boost\n Positive 34 usable compelling little slow laptops mechanical hard drive ssd windows linux mint speed performance boost
1146 Started giving problems within 7 days.had to replace HDD.I didn't had to pay since it was under warranty.and I was told that the components were of a very cheap quality.sort of a use and throw laptoo\n start give problem within 7 dayshad replac hddi didnt pay sinc warrantyand told compon cheap qualitysort use throw laptoo\n Negative 36 problems hdd.i warranty.and components cheap quality.sort use laptoo
1147 The laptop is very nice but the problem is when we are charging earthing is coming\n laptop nice problem charg earth coming\n Neutral 16 laptop nice problem
1148 It's good in bought\n good bought\n Positive 4 good
1149 Nice performance\n nice performance\n Positive 2 nice performance
1150 my review is for hp 434tx i3 7th gen. after i bought this i should suggest you that never buy any hp laptop. they hang like hell. and their customer care support is the worst. they talk about extension of warranty with 6000 rupee with free headphone, but their support team never visits your home, why should you extend warranty if they didn't come? you will get a call saying we may come? rain ? stupid\n review hp 434tx i3 7th gen bought suggest never buy hp laptop hang like hell custom care support worst talk extens warranti 6000 rupe free headphon support team never visit home extend warranti didnt come get call say may come rain stupid\n Negative 76 review hp 434tx i3 7th gen . hp laptop hell customer care support worst extension warranty rupee free headphone support team home warranty call rain stupid
1151 The bluetooth devices can't receive nothing\n bluetooth devic cant receiv nothing\n Neutral 6 bluetooth devices
1152 Recieved faulty display . Keyboard impressions on brand new laptop screen. Unbelievable !\n reciev faulti display keyboard impress brand new laptop screen unbeliev \n Positive 13 faulty display keyboard impressions brand new laptop screen unbelievable
1153 I bought this laptop from a authorized hp product dealers in 53k about a week ago. Laptop has a premium look and it's blazing fast, thanks to the 256gb ssd. It has a backlight keyboard. I bought this only for programming and watching movies stuff. So far, no complaint.\n bought laptop author hp product dealer 53k week ago laptop premium look blaze fast thank 256gb ssd backlight keyboard bought program watch movi stuff far complaint\n Positive 49 laptop hp product dealers 53k week laptop premium thanks gb ssd backlight keyboard programming movies stuff complaint
1154 ProsBoot up time is really fast.ConsThere are heating issues. Laptop hears very fast\n prosboot time realli fastconsther heat issu laptop hear fast\n Neutral 13 prosboot time fast.consthere heating issues laptop
1155 I frustrated about this product and delivery service by Amazon. Hated both HP and Amazon. Amazon delivered this product after a week and customer Support guys didn't know anything about my product, they don't know proper info about our products which is placed on Amazon. The product delivery time was hectic. I preferred to buy this laptop to protect my data, but it doesn't have that feature (Windows home edition will not support bit locker and even it will not support device encryption)contacted Microsoft for this issue: they said contact HP and HP customer care is not working even I have LPM 2.0 it's not workingBattery life is just 3 hoursEventually the laptop is overheatingWindows home edition doesn't have more features 😫Poor product Quality51k wasted 😔Amazon Please please please please don't encourage such wrong products and fake sellersAmazon Cons:Product Delivery TimeCustomer SupportDelivery guy contact details are wrongProduct is not genuineServiceHP Cons:Battery lifeOver heatWindows OS Home editionDisk EncryptionPoor Quality of product ☹️LPM 2.0\n frustrat product deliveri servic amazon hate hp amazon amazon deliv product week custom support guy didnt know anyth product dont know proper info product place amazon product deliveri time hectic prefer buy laptop protect data doesnt featur window home edit support bit locker even support devic encryptioncontact microsoft issu said contact hp hp custom care work even lpm 20 workingbatteri life 3 hourseventu laptop overheatingwindow home edit doesnt featur 😫poor product quality51k wast 😔amazon pleas pleas pleas pleas dont encourag wrong product fake sellersamazon consproduct deliveri timecustom supportdeliveri guy contact detail wrongproduct genuineservicehp consbatteri lifeov heatwindow os home editiondisk encryptionpoor qualiti product ☹️lpm 20\n Positive 162 product delivery service amazon hp amazon amazon product week customer support guys product proper info products amazon product delivery time hectic laptop data feature windows home edition bit locker device encryption)contacted microsoft issue contact hp hp customer care workingbattery life laptop overheatingwindows home edition more features poor product quality51k amazon such wrong products fake sellersamazon cons product delivery timecustomer supportdelivery guy contact details wrongproduct genuineservicehp cons battery lifeover heatwindows os home editiondisk encryptionpoor quality product lpm
1156 First time they delivered the laptop the display was defective as it had keyboard imprints in it.otherwise i really like the laptop but i won't say its the perfect ever.Pros.1)Light weight, compact and has premium look.2) Amazing backlit keyboard.3)good 1080p display4)SSD+HDD+8gb ram which makes it Superfast as well as super useful to store data.5)Decent speaker which is becoming increasingly rare to find.Cons.1) low battery life.2) Does get heated up quickly.i purchased this for academics and coding so i dont regret my purchase at all. but delivering faulty display one first and then replacing to get a new one was a bad experience as i couldn't complete an assignment on time because i didn't have a laptop at hand.\n first time deliv laptop display defect keyboard imprint itotherwis realli like laptop wont say perfect everpros1light weight compact premium look2 amaz backlit keyboard3good 1080p display4ssdhdd8gb ram make superfast well super use store data5dec speaker becom increasingli rare findcons1 low batteri life2 get heat quicklyi purchas academ code dont regret purchas deliv faulti display one first replac get new one bad experi couldnt complet assign time didnt laptop hand\n Negative 118 first time laptop display defective keyboard imprints it.otherwise laptop perfect ever.pros.1)light weight compact premium look.2 amazing keyboard.3)good display4)ssd+hdd+8 gb ram superfast useful data.5)decent speaker rare find.cons.1 low battery life.2 quickly.i academics purchase faulty display new one bad experience assignment time laptop hand
1157 It is a bad experience with this laptop twice..I have purchased this laptop second time after the replacement of the first one. Both were facing the same issue of keyboard marks inside the screen..,\n bad experi laptop twicei purchas laptop second time replac first one face issu keyboard mark insid screen\n Negative 34 bad experience laptop laptop second time replacement first same issue keyboard marks screen
1158 Great product from HP. Got this for 1k less price than here from HP website and also got a free laptop bag. Delivery was super quick (Blue dart)Loved the laptop overall. The SSD makes the experience super smooth. However the keyboard looks cheap and shoddy. Buttons on the chiclet keyboard are clicky and might be announcing to few. Display is great so far, just been a week.Will post a complete review after a month. So far, this is the best non-gaming laptop (from my research) under 55k.\n great product hp got 1k less price hp websit also got free laptop bag deliveri super quick blue dartlov laptop overal ssd make experi super smooth howev keyboard look cheap shoddi button chiclet keyboard clicki might announc display great far weekwil post complet review month far best nongam laptop research 55k\n Positive 87 great product hp 1k less price hp website free laptop bag delivery quick blue laptop ssd experience smooth keyboard cheap shoddy buttons chiclet keyboard clicky few display great week.will post complete review month best non - gaming laptop research 55k
1159 Don’t buy, screen started flickering and switching off on the first day only after 1:30 hours of usage, defective laptops, could not check remaining areas as the screen is blank,\n don’t buy screen start flicker switch first day 130 hour usag defect laptop could check remain area screen blank\n Negative 30 don t screen first day hours usage defective laptops areas screen blank
1160 Bought it 2 weeks back for my regular use. Its a great performer. Super fast speed and very smooth performance. Beautiful, slim and light. Silver shade is bright. Battery life is good.Got it cheaper @ ₹ 44049/- after exchange of my old Samsung laptop (-₹ 5050) from Fast Deal dealer.Thank you Amazon. Thank you Fast Deal.\n bought 2 week back regular use great perform super fast speed smooth perform beauti slim light silver shade bright batteri life goodgot cheaper ₹ 44049 exchang old samsung laptop ₹ 5050 fast deal dealerthank amazon thank fast deal\n Positive 56 weeks regular use great performer fast speed smooth performance beautiful slim light silver shade bright battery life good.got cheaper exchange old samsung laptop fast deal dealer.thank amazon deal
1161 Good one..fast processor, good screen, start up/ shut down in 20sec, built is good, full version microsoft 2019.Had some error msg intially but maybe due to some installtn of software.Took time to submit review just to be doubly sure tht its performing fine...\n good onefast processor good screen start shut 20sec built good full version microsoft 2019had error msg intial mayb due installtn softwaretook time submit review doubli sure tht perform fine\n Positive 43 good one fast processor good screen up/ 20sec good full version microsoft error due installtn software.took time review sure tht
1162 I brought it on 9.9.19.. it is very good to use...Pros:very light weight..keyboard is very good..screen resolution is very good..ssd is very fast.... especially boot up and shut down..cons:screen turning angle is very less... not even 180 degree..personal view : i was searching for full black laptop in this model... but in this model full black is not available....\n brought 9919 good useprosveri light weightkeyboard goodscreen resolut goodssd fast especi boot shut downconsscreen turn angl less even 180 degreeperson view search full black laptop model model full black available\n Positive 59 good pros light weight keyboard good screen resolution good ssd fast cons screen angle less degree personal view full black laptop model model full black available
1163 It is really fast. Screen quality is best with good battery life. This laptop is actually for educational & business purpose and for light gaming.\n realli fast screen qualiti best good batteri life laptop actual educ busi purpos light gaming\n Positive 26 fast screen quality best good battery life laptop educational business purpose light gaming
1164 If you are looking for laptop for study purpose this is very good for you. Every thing is taken under consideration, it's look is really adorable, 4-5 hrs battery life very good sound quality. You are getting intel i-5 processor, window 10 home addition.so far i found every thing well and good about this. Yaa if you are looking for gaming laptop I won't prefer this.\n look laptop studi purpos good everi thing taken consider look realli ador 45 hr batteri life good sound qualiti get intel i5 processor window 10 home additionso far found everi thing well good yaa look game laptop wont prefer this\n Positive 66 laptop study purpose good thing consideration look adorable hrs battery life good sound quality intel i-5 processor window home addition.so thing good yaa laptop
1165 Honestly I was little bit in tension after watching some reviews of this product like keyboard mark mostly. And hoping for not suffering the same...but honestly in my situation I have received the perfect one just when I was opening the packet of the product unfortunately I tore the bill. Please carefully unbox your packet and yeah i am satisfied\n honestli littl bit tension watch review product like keyboard mark mostli hope suffer samebut honestli situat receiv perfect one open packet product unfortun tore bill pleas care unbox packet yeah satisfied\n Positive 60 little bit tension reviews product keyboard mark same situation perfect one packet product bill packet satisfied
1166 Distinguishing product and disgusting service by amazon.Within 2 months got buttons impression on screen.Replacement letter was provided by HP but amazon people are not at all helping out with issueDon't buy such costly product online\n distinguish product disgust servic amazonwithin 2 month got button impress screenreplac letter provid hp amazon peopl help issuedont buy costli product online\n Positive 35 product disgusting service amazon.within months buttons impression screen.replacement letter hp amazon people such costly product
1167 Good product and timely delivery\n good product time delivery\n Positive 5 good product timely delivery
1168 The laptop is found only for light work. I expected some big battery life. But it gives only 3 hours. Laptop has heating issues also.\n laptop found light work expect big batteri life give 3 hour laptop heat issu also\n Neutral 25 laptop light work big battery life hours laptop heating issues
1169 battery life - ideal for 4 hours to 6 hours based on your workloadfor gaming - Ok for small Graphics gamesscreen quality - 5 star\n batteri life ideal 4 hour 6 hour base workloadfor game ok small graphic gamesscreen qualiti 5 star\n Positive 25 battery life ideal hours hours workloadfor gaming ok small graphics quality star
1170 Performance is good. And very good laptop if you don't want for gaming purpose.But I received screen with keyboard marks on it, and I have to replace it.\n perform good good laptop dont want game purposebut receiv screen keyboard mark replac it\n Positive 28 performance good good laptop purpose.but screen keyboard marks
1171 I am loving it at the moment, shall write after more usage\n love moment shall write usage\n Positive 12 moment more usage
1172 Good. Didn't face any issues yet its been a month. Battery easily lasts more then 4 hrs.\n good didnt face issu yet month batteri easili last 4 hrs\n Positive 17 good issues month battery more hrs
1173 Good Quality Laptop for my Son MBA use.\n good qualiti laptop son mba use\n Positive 8 good quality laptop son mba use
1174 Permanent keypad impression on screen\n perman keypad impress screen\n Positive 5 permanent keypad impression screen
1175 It good laptop provide descent battery back up .SSD HDD is increases the speed . Light weight laptop screen resolution also good to see the HD screen.I am overall satisfied with the product.\n good laptop provid descent batteri back ssd hdd increas speed light weight laptop screen resolut also good see hd screeni overal satisfi product\n Positive 34 good laptop descent battery hdd speed light weight laptop screen resolution good hd screen.i satisfied product
1176 Just bought before a week back I can’t comment\n bought week back can’t comment\n Neutral 9 week
1177 Very Good Product\n good product\n Positive 3 good product
1178 Always wanted to buy a laptop. Thank you amazon for the best price and super cool laptop.. it was delivered ON TIME and GOOD product... thank you again\n alway want buy laptop thank amazon best price super cool laptop deliv time good product thank again\n Positive 28 laptop amazon best price super cool laptop time good product
1179 I am not addicted to Gaming. But it is light and handy for office purpose work. Due to SSD it is very fast in booting.\n addict game light handi offic purpos work due ssd fast booting\n Neutral 25 gaming light handy office purpose work ssd fast booting
1180 Very good buy. Specs are great and its light to carry around\n good buy spec great light carri around\n Positive 12 good buy specs great light
1181 Good laptop for programing\n good laptop programing\n Positive 4 good laptop programing
1182 Speed not good, cursor get stuck many times\n speed good cursor get stuck mani times\n Positive 8 speed good cursor many times
1183 Great laptop with all the requisite features and it's light as well.\n great laptop requisit featur light well\n Positive 12 great laptop requisite features light
1184 Laptop received without prenis talked - office home & student edition 2019\n laptop receiv without preni talk offic home student edit 2019\n Neutral 12 laptop prenis office home student edition
1185 Light weight, fast, attractive.\n light weight fast attractive\n Positive 4 light weight fast attractive
1186 Good product after using of two months I am giving this review.\n good product use two month give review\n Positive 12 good product months review
1187 So far so good !!! Portable, light and fast !!\n far good portabl light fast \n Positive 10 good portable light fast
1188 Good for office use. Light weight. Not recommend for gaming\n good offic use light weight recommend gaming\n Positive 10 good office use light weight gaming
1189 Nice product...Good speed...\n nice productgood speed\n Positive 3 nice product good speed
1190 It's a sleek and light laptop. Good for home use.\n sleek light laptop good home use\n Positive 10 sleek light laptop good home use
1191 Amazing buy , amazingly quick delivery. Thank you Amazon!\n amaz buy amazingli quick deliveri thank amazon\n Positive 9 amazing buy quick delivery amazon
1192 Excellent product must buy\n excel product must buy\n Positive 4 excellent product
1193 Not up to the mark as specified\n mark specified\n Neutral 7 mark
1194 Great product for students\n great product students\n Positive 4 great product students
1195 All features are good\n featur good\n Positive 4 features good
1196 Battery Is not good.\n batteri good\n Positive 4 battery good
1197 Reviewing after a month of usage ..I bought this laptop from storeVery good for developersThin and LightNice keyboard and has backlight.Sharp & crisp display, has ample sound not very noisy. No Dolby.No DVD drive, 2 STD USB 3.0, 1 USB Type C, RJ45, SD Card Reader, 3.5mm Jack, Locking port probably for office purpose.Very fast and smooth and lightning speed boot.Comes with MS Office Home & Student --> only access to word, powerpoint, excel and onenote.Screen can be tilted only 120 degree not 180 or 360I had been using it for more than a month.My usage was mostly on developer tools , some browsing and movies, it can smoothly run an ide , dozen of chrome tabs, a local database instance. Did not give a try with Android studio. My previous i3 machines with 4gb ram used to struggle for this usage. This one seamlessly able to work.Regarding windows updates , got a couple of updates on windows and driver updates from hp. Updates installed perfectly, no issues on updates.\n review month usag bought laptop storeveri good developersthin lightnic keyboard backlightsharp crisp display ampl sound noisi dolbyno dvd drive 2 std usb 30 1 usb type c rj45 sd card reader 35mm jack lock port probabl offic purposeveri fast smooth lightn speed bootcom ms offic home student access word powerpoint excel onenotescreen tilt 120 degre 180 360i use monthmi usag mostli develop tool brows movi smoothli run ide dozen chrome tab local databas instanc give tri android studio previou i3 machin 4gb ram use struggl usag one seamlessli abl workregard window updat got coupl updat window driver updat hp updat instal perfectli issu updates\n Positive 170 month usage laptop storevery good developersthin lightnice keyboard backlight.sharp crisp display ample sound noisy dvd drive std usb usb type c rj45 card reader jack port office fast smooth lightning speed boot.comes ms office home student access word powerpoint excel onenote.screen degree 360i more usage developer tools browsing movies ide dozen chrome tabs local database instance try android studio previous i3 machines gb ram usage one able windows updates couple updates windows driver hp updates issues updates
1198 Perfect lap for those who give preference to specification. Ssd & hdd is an added adavantage of this model.. That too in this price rate... Value for money... go for it. Once check the price at ur near by hp store. Since the price in Amazon fluctuates.\n perfect lap give prefer specif ssd hdd ad adavantag model price rate valu money go check price ur near hp store sinc price amazon fluctuates\n Positive 47 perfect lap preference specification ssd hdd adavantage model price rate value money price ur hp store price amazon
1199 The description says that it includes office home and student, but cannot active the same, tried logging in with Microsoft account still it shows activation required.\n descript say includ offic home student cannot activ tri log microsoft account still show activ required\n Neutral 26 description office home student same microsoft account activation
1200 This laptop is very good for normal use. I am not Game lover so i not purchased with graphics card. It has SSD + HDD combination & boot up time and running speed is brilliant.I have also listed other laptop on my youtube channel" Tech Waalaa" please watch there\n laptop good normal use game lover purchas graphic card ssd hdd combin boot time run speed brillianti also list laptop youtub channel tech waalaa pleas watch there\n Positive 49 laptop good normal use game lover graphics card ssd hdd combination boot time speed other laptop youtube channel tech waalaa
1201 This product is available at 50500/- at HP store.\n product avail 50500 hp store\n Neutral 9 product available hp store
1202 Awsmmmm\n awsmmmm\n Neutral 1 awsmmmm
1203 Light weight and stylised\n light weight stylised\n Neutral 4 light weight
1204 Best laptop\n best laptop\n Positive 2 best laptop
1205 Value for money Totally Satisfied...\n valu money total satisfied\n Positive 5 value money satisfied
1206 Speed\n speed\n Neutral 1 speed
1207 Amazing.Just awesome.Happy buyer , battery is good , laptop is excellentGo for it..\n amazingjust awesomehappi buyer batteri good laptop excellentgo it\n Positive 13 amazing.just awesome.happy buyer battery good laptop excellentgo
1208 Usually i dont give stars below than 4 ...but this time its really forced me to give it ine star....... The performance of system is too bad ... Even after 8 gb ram and 7 gen ...its tooo slow ..... Takes forever to load os ...take years to open refresh ... Just stum on screens ...Will not suggest to buy this laptop .\n usual dont give star 4 time realli forc give ine star perform system bad even 8 gb ram 7 gen tooo slow take forev load os take year open refresh stum screen suggest buy laptop \n Negative 63 stars time ine star performance system bad gb ram gen tooo slow os years refresh screens laptop
1209 1.From the beginning, the computer kept rebooting and the cursor got stuck,first every 5mins and then every one minute, so frequently that after seeing the logo HP the screen would flicker and computer start rebooting immediately.The cycle would go on for couple of times, then the window says Windows Not Properly Installed. Options given below: Advanced troubleshooting and Shut Down The computer came with windows installed,but from day1, it's been saying Windows not properly installed and rebooting and the screen flickering.2. The specifications before buying said With MS Office installed, and when you open and check you find subscription is for only 30days.3. Graphics are poor when it's supposed to be a full HD computer.4. I have lost all trust on electronic products bought from Amazon. You should have an option for Return not just Exchange or give a free troubleshooting service.Even though I have bought an extended warranty, I don't have the time to wait and call for service every few days.\n 1from begin comput kept reboot cursor got stuckfirst everi 5min everi one minut frequent see logo hp screen would flicker comput start reboot immediatelyth cycl would go coupl time window say window properli instal option given advanc troubleshoot shut comput came window installedbut day1 say window properli instal reboot screen flickering2 specif buy said ms offic instal open check find subscript 30days3 graphic poor suppos full hd computer4 lost trust electron product bought amazon option return exchang give free troubleshoot serviceeven though bought extend warranti dont time wait call servic everi days\n Positive 164 beginning computer cursor stuck minute logo hp screen computer start cycle couple times window windows options advanced troubleshooting computer windows day1 windows screen flickering.2 specifications ms office subscription only 30days.3 graphics poor full hd computer.4 trust electronic products amazon option return exchange free troubleshooting service.even extended warranty time service few days
1210 The HP 15q 0026tu is an excellent budget laptop with Good quality of Performance and Battery life.Battery avg - 5 to 6hourSound quality- Good quality ( at 70 below)Performance- GoodBoot time -1 minutes and lessBuild quality- BetterCons:No Ms office original version only trail version for 30 days.\n hp 15q 0026tu excel budget laptop good qualiti perform batteri lifebatteri avg 5 6hoursound qualiti good qualiti 70 belowperform goodboot time 1 minut lessbuild qualiti betterconsno ms offic origin version trail version 30 days\n Positive 47 hp 0026tu excellent budget laptop good quality performance battery life.battery avg quality- good quality below)performance- goodboot time minutes lessbuild quality- bettercons ms office original version trail version days
1211 Lap seems sooper smooth while initial setup. Doesn't felt any lag issue like other people claim in their review.. not much satisfied about battery life , thats y 4 giving 4 star. Bt overall it is the best one available in market for this price range.. i opt to purchase this one after 10 days of enquiries and web searches.. it doesnt make me disappointed.. thanks to amazone.. in hp support ,found it is a genuine lappy 😍Review after 2 months -. I just gave one more star and now it is 5 star. Overall pefomance is awesome.. only one problem when creating new folder it lags ore few sec. Those who felt the system is slow, kindly uninstall useless pre-installed softwares especially mcafee antivirus and install avast free or any other antivirus.. now your problem solved.. u can have a sooper smooth lappy.. enjoy 😍🔥\n lap seem sooper smooth initi setup doesnt felt lag issu like peopl claim review much satisfi batteri life that 4 give 4 star bt overal best one avail market price rang opt purchas one 10 day enquiri web search doesnt make disappoint thank amazon hp support found genuin lappi 😍review 2 month gave one star 5 star overal pefom awesom one problem creat new folder lag ore sec felt system slow kindli uninstal useless preinstal softwar especi mcafe antiviru instal avast free antiviru problem solv u sooper smooth lappi enjoy 😍🔥\n Positive 147 lap sooper smooth initial setup lag issue other people review satisfied battery life y star best available market price range days enquiries web searches disappointed thanks amazone hp support genuine lappy review months more star star overall pefomance awesome problem new folder ore few sec system slow uninstall useless pre - installed softwares mcafee antivirus free other antivirus problem sooper smooth lappy
1212 Very bad experience. System is booting very slow. Bigger than mentioned. No performance of 8 gb. Requested for replacement. Amazon denied it. Asked me to go to service centre. Same day of delivery I am asked to go to service centre to repair.\n bad experi system boot slow bigger mention perform 8 gb request replac amazon deni ask go servic centr day deliveri ask go servic centr repair\n Negative 46 bad experience system slow bigger performance gb replacement amazon service centre same day delivery service centre
1213 I like the laptop it has an SSD+HDD option and RAM upgrade option I have upgraded with 256 SSD and 8 GB RAm Now laptop has 16 Gb RAM with 256 GB SSD for OS and 1 TB for Storage. laptop work flawlessly... Awesome purchase.\n like laptop ssdhdd option ram upgrad option upgrad 256 ssd 8 gb ram laptop 16 gb ram 256 gb ssd os 1 tb storag laptop work flawlessli awesom purchase\n Positive 45 laptop ssd+hdd option upgrade option ssd gb ram laptop gb ram gb ssd os tb storage laptop work awesome purchase
1214 If you are looking for a no-frills laptop, this is the one. Looks ok, works like a charm, good keypad and overall ticks all boxes. If you compare it to a laptop twice its price, obviously you will be disappointed. This is a WagonR and looks and works like one . Do not expect to work and look like Honda City or anything higher. Period.\n look nofril laptop one look ok work like charm good keypad overal tick box compar laptop twice price obvious disappoint wagonr look work like one expect work look like honda citi anyth higher period\n Positive 66 frills laptop charm good keypad overall ticks boxes laptop price wagonr honda city higher period
1215 Good packing from Amazon... neat and safe... immediately after receiving I thought it was refurbished... but after using for a month... I feel it is a good product... battery and sound quality is satisfactory\n good pack amazon neat safe immedi receiv thought refurbish use month feel good product batteri sound qualiti satisfactory\n Positive 34 good packing amazon neat safe month good product battery sound quality satisfactory
1216 I purchased this item 28th January but due to some argent work I could not use it within return time. This is defected product . Some keys are not working. And very slow process\n purchas item 28th januari due argent work could use within return time defect product key work slow process\n Negative 34 item 28th january argent work return time product keys slow process
1217 This is the best laptop in budget range with good battery back up and light weight. I am using Photoshop, image ready and premier without any lag. I bought 8GB varient which helping me boosting performance. I was using Lenovo G560 model with 8GB RAM but it weighs more. Conclusion: Go for this laptop if your budget is within 35k.\n best laptop budget rang good batteri back light weight use photoshop imag readi premier without lag bought 8gb varient help boost perform use lenovo g560 model 8gb ram weigh conclus go laptop budget within 35k\n Positive 61 best laptop budget range good battery light weight photoshop image ready lag gb varient performance lenovo g560 model gb ram more conclusion laptop budget 35k
1218 All is well so far.Fast Boot up.Awesome HD Display.Smooth and Great Performance.Nice Keyboard.Good Quality Sound.Cons1. No Touchpad Disable Button. Even in Driver Manager disable option is not present.2. Only one partition and in that Windows is installed.\n well farfast boot upawesom hd displaysmooth great performancenic keyboardgood qualiti soundcons1 touchpad disabl button even driver manag disabl option present2 one partit window installed\n Positive 37 well far.fast boot up.awesome hd display.smooth great performance.nice keyboard.good quality sound.cons1 touchpad disable button driver manager disable option present.2 partition windows
1219 Don't know whom to blame the HP guys or the delivery retailer or Amazon people. The product delivered we believe was an refurbished one and not a new product! The laptop started giving issues in the months of service itself. Seems to have some battery issues as even getting charged for the whole day did not last for a hour.Please don't buy this product\n dont know blame hp guy deliveri retail amazon peopl product deliv believ refurbish one new product laptop start give issu month servic seem batteri issu even get charg whole day last hourpleas dont buy product\n Positive 65 hp guys delivery retailer amazon people product new product laptop issues months service battery issues whole day hour.please product
1220 MS Office is not pre-installed..... And amazom Show's it was pre-installed!\n ms offic preinstal amazom show preinstalled\n Neutral 11 ms office pre installed amazom show installed
1221 Good laptop at a reasonable price. But laptop was performing slow when I was using the pre-installed trial version of Mcafee. After I uninstalled Mcafee and installed another antivirus named Comodo, it started working fine.\n good laptop reason price laptop perform slow use preinstal trial version mcafe uninstal mcafe instal anoth antiviru name comodo start work fine\n Positive 35 good laptop reasonable price laptop pre - installed trial version mcafee mcafee antivirus comodo
1222 I purchased this leptop under 34k in freedom sale , which contains 256gb SSD 8gb ram and Intel hd 620 graphics which makes this Laptops l awesome.. only one problem is that, I don't know how to partitions c drive without formatting.\n purchas leptop 34k freedom sale contain 256gb ssd 8gb ram intel hd 620 graphic make laptop l awesom one problem dont know partit c drive without formatting\n Positive 42 leptop 34k freedom sale gb ssd gb ram intel hd graphics laptops l awesome problem partitions c
1223 After using the laptop for 7 days:Packaging and delivery:Pretty ordinary packaging and no manual for laptop.Pro's:1.Build quality is good and looks premium.2.Easier to carry with light weight.3.Audio and sound quality is good and is audible in an empty room easily.4.8 GB ram version takes pretty much less time to start and loads fast.Cons:1.Display quality is pretty average,colors are not clear.2. No MS office, with windows 10.We need to enter product key after few days which is bad. Should have given MS office.\n use laptop 7 dayspackag deliverypretti ordinari packag manual laptoppros1build qualiti good look premium2easi carri light weight3audio sound qualiti good audibl empti room easily48 gb ram version take pretti much less time start load fastcons1display qualiti pretti averagecolor clear2 ms offic window 10we need enter product key day bad given ms office\n Positive 82 laptop days packaging delivery ordinary packaging manual laptop.pro's:1.build quality good light sound quality good audible empty room easily.4.8 gb ram version less time fast.cons:1.display quality average colors clear.2 ms office windows product key few days bad ms office
1224 I just received this laptop today (I'll update this if there are any issues). And so far, it's amazing! The sound quality is pretty good, and so is the display. I feel like it could've been better if the keyboard was backlit, but that wasn't a priority. Overall, it's a well functioning laptop if you're not a heavy gamer or don't need a laptop for serious coding. It's great for everyday use (though it doesn't have office so that's a drawback). The keyboard quality and mouse smoothness could've been better, but they're not bad (pretty good). If you need a budget laptop for everyday use, definitely go for this.\n receiv laptop today ill updat issu far amaz sound qualiti pretti good display feel like couldv better keyboard backlit wasnt prioriti overal well function laptop your heavi gamer dont need laptop seriou code great everyday use though doesnt offic that drawback keyboard qualiti mous smooth couldv better theyr bad pretti good need budget laptop everyday use definit go this\n Positive 109 laptop today issues amazing sound quality good display better keyboard priority well laptop heavy gamer laptop serious coding great everyday use office drawback keyboard quality mouse smoothness better bad good budget laptop everyday use
1225 Battery life is good good product\n batteri life good good product\n Positive 6 battery life good good product
1226 Home use, private use, perfect for me, was special offer, all in all best price in town, works like a bomb, all good so far\n home use privat use perfect special offer best price town work like bomb good far\n Positive 25 home use private use perfect special offer best price town bomb good
1227 Very nice laptop. The i3 processor in this laptop and 8GB ram handled all the day-to-day tasks perfectly but gaming is very bad. After installing some apps the os was slow. But for normal use, this is a great laptop.\n nice laptop i3 processor laptop 8gb ram handl daytoday task perfectli game bad instal app os slow normal use great laptop\n Positive 40 nice laptop i3 processor laptop gb ram day day tasks gaming bad apps os slow normal use great laptop
1228 Let me start from the display. Display quality is good and battery life it's gives the 3 hours and speed of the prosser is good overall the laptop is good for the students and some office works also.\n let start display display qualiti good batteri life give 3 hour speed prosser good overal laptop good student offic work also\n Positive 38 display display quality good battery life hours speed prosser good laptop good students office
1229 Worst product ever, don’t purchase it and nt even beginners also can’t use this it’s veryyyyyyy slow and they dnt hv exchange policy also\n worst product ever don’t purchas nt even beginn also can’t use it’ veryyyyyyi slow dnt hv exchang polici also\n Negative 24 worst product don t beginners t veryyyyyyy slow hv exchange policy
1230 Good processing speed! Documents load faster. Laptop boot within 8 second. And Shut down within 3-5 second. One Star less for average look.\n good process speed document load faster laptop boot within 8 second shut within 35 second one star less averag look\n Positive 23 good processing speed documents laptop boot second second star less average look
1231 Good laptop... though a bit too large to carry...the topmost keys on the keyboard are small and given the fact that the keyboard has lots of space, they could have easily put larger size keysThe cover of the laptop tends to show the fingerprint marks and smudgesMS office is the student version and doesn't have all features.Except these negatives, I found the laptop fairly good for routine work purpose\n good laptop though bit larg carryth topmost key keyboard small given fact keyboard lot space could easili put larger size keysth cover laptop tend show fingerprint mark smudgesm offic student version doesnt featuresexcept neg found laptop fairli good routin work purpose\n Positive 69 good laptop bit large topmost keys keyboard small fact keyboard lots space larger size keysthe cover laptop fingerprint marks smudgesms office student version negatives laptop good routine work purpose
1232 Useless buying it from Amazon... no value for money and trying to get a product activation key from HP support\n useless buy amazon valu money tri get product activ key hp support\n Positive 20 useless amazon value money product activation key hp support
1233 I'm giving review after using it one week.Battery life is good almost 5 to 6 hours if you're making projects or watching movies.Sound quality is very good.I suggest you don't use Vlc for watching videos.\n im give review use one weekbatteri life good almost 5 6 hour your make project watch moviessound qualiti goodi suggest dont use vlc watch videos\n Positive 35 review week.battery life good hours projects movies.sound quality good.i vlc videos
1234 It doesn't supports 5GHZ internet. HP should think of including 5GHZ network Adapter.\n doesnt support 5ghz internet hp think includ 5ghz network adapter\n Negative 13 internet hp network adapter
1235 Excellent for battery backup\n excel batteri backup\n Positive 4 excellent battery backup
1236 Happy with this product..\n happi product\n Neutral 4 happy product
1237 I giving the review after 20 day of use. I perform well. takes only 2to3 second to start, all applications run smoothly without hanging and battery life is six hours.but one drawback is ms office is only 5 day trial version but overall well at this price\n give review 20 day use perform well take 2to3 second start applic run smoothli without hang batteri life six hoursbut one drawback ms offic 5 day trial version overal well price\n Positive 47 review day use second applications hanging battery life drawback ms office day trial version price
1238 Very slow for Win 10\n slow win 10\n Positive 5 slow win
1239 Would like to know how to activate the Windows Office. Not getting activated, asking to buy\n would like know activ window offic get activ ask buy\n Positive 18 windows office
1240 Good performance so far using for software development, ordered on August 2019Recommended for software engineers as 8gb and 256gb ssd is must for ease development\n good perform far use softwar develop order august 2019recommend softwar engin 8gb 256gb ssd must eas development\n Positive 25 good performance software development august software engineers gb gb ssd ease development
1241 Keypad stopped working after 14 days of purchase. Bad quality of built by HP. Worst seller service experience.\n keypad stop work 14 day purchas bad qualiti built hp worst seller servic experience\n Negative 18 keypad days purchase bad quality hp worst seller service experience
1242 I don't know whether I am doing something wrong but it is taking too much time to power on\n dont know whether someth wrong take much time power on\n Negative 19 wrong much time power
1243 Good laptop, they create only one drive of 1 GB.Windows product key is not shared with me.How to reinstall if OS will corrupt.\n good laptop creat one drive 1 gbwindow product key share mehow reinstal os corrupt\n Positive 23 good laptop drive gb.windows product key me.how os
1244 Very good product with reasonable price. as expected\n good product reason price expected\n Positive 8 good product reasonable price
1245 Best one but little heavy in weight... sometimes get slow other thing no issue...\n best one littl heavi weight sometim get slow thing issue\n Positive 14 best little heavy weight slow other thing issue
1246 Not as smooth as i thought it should be, being a 7th gen & 8GB RAM, it functions like my old 4GB RAM quadcore but a downgrade on sounds... the only plus point is i guess it is upgradeable and it cost very less, battery life is also not upto the mark..\n smooth thought 7th gen 8gb ram function like old 4gb ram quadcor downgrad sound plu point guess upgrad cost less batteri life also upto mark\n Positive 52 smooth 7th gen gb ram old gb ram quadcore downgrade sounds only point upgradeable less battery life mark
1247 Good quality laptop. Only thing missing was microsoft office.\n good qualiti laptop thing miss microsoft office\n Positive 9 good quality laptop thing microsoft office
1248 Defective one, neither amazon nor hp replaced the item, even within the period of replacement. Technician sent by both amazon & hp couldn't detect the problem. But after repeated complain hp technician repaired the laptop.\n defect one neither amazon hp replac item even within period replac technician sent amazon hp couldnt detect problem repeat complain hp technician repair laptop\n Negative 35 defective amazon hp item period replacement technician amazon hp problem complain hp technician laptop
1249 good look as it have a metallic body and a coating on it but a little bit slow and the system is not up to date.battery is just okay and also it is a little bit heavier.overall good for normal stuffs and entertainment.\n good look metal bodi coat littl bit slow system datebatteri okay also littl bit heavieroveral good normal stuff entertainment\n Positive 43 good metallic body coating little bit slow system date.battery okay little bit heavier.overall good normal stuffs entertainment
1250 If you wish to have proper laptop with good sound effects just go for it blindly.\n wish proper laptop good sound effect go blindly\n Positive 16 proper laptop good sound effects
1251 A very good quality product and excellent battery life\n good qualiti product excel batteri life\n Positive 9 good quality product excellent battery life
1252 Very very slow and it's heavy\n slow heavy\n Neutral 6 slow heavy
1253 Not happy at all...save few thousands more and buy a MacBook air. Really disappointed.\n happi allsav thousand buy macbook air realli disappointed\n Negative 14 happy few thousands more macbook air disappointed
1254 the shipping box was in good condition, the inside laptop was safely packed, inside one laptop & charger found.so far performance is good\n ship box good condit insid laptop safe pack insid one laptop charger foundso far perform good\n Positive 23 shipping box good condition inside laptop laptop charger found.so far performance good
1255 Over all laptop was good but little bit slow\n laptop good littl bit slow\n Positive 9 laptop good little bit slow
1256 Premium product. Value for money. However need to update software through HP. Excellent service by Amazon.\n premium product valu money howev need updat softwar hp excel servic amazon\n Positive 16 premium product value money software hp excellent service amazon
1257 I bought this laptop on 14/08/2019.Now a black spot is appeared on the screen within two months.it is difficult to read or use the laptop now.it is a cheap quality laptop.\n bought laptop 14082019now black spot appear screen within two monthsit difficult read use laptop nowit cheap qualiti laptop\n Negative 31 laptop black spot screen months.it difficult laptop now.it cheap quality laptop
1258 Very bad product, yesterday I got, today it's not working, it's completly blackout\n bad product yesterday got today work completli blackout\n Negative 13 bad product yesterday today blackout
1259 its a stunning laptop. Boots asap, speaks louder, hd videos, stays on for long time.\n stun laptop boot asap speak louder hd video stay long time\n Neutral 15 stunning laptop boots asap hd videos long time
1260 Good to operate and sleek in design.. must buy...But speed is not as expected and display is also not much as expected.. overall 3.5 stars\n good oper sleek design must buybut speed expect display also much expect overal 35 stars\n Positive 26 good sleek design speed display much overall stars
1261 Best for students no hanging problem\n best student hang problem\n Positive 6 best students problem
1262 Fast, good battery life, good speakers that's what I needed. One should go for the 8gb ram version, saves you a lot of Hassel with some extra cost. Worth it I feel.\n fast good batteri life good speaker that need one go 8gb ram version save lot hassel extra cost worth feel\n Positive 33 fast good battery life good speakers gb ram version lot hassel extra cost worth
1263 I just brought this laptop a week befor and it just get blacked out daily\n brought laptop week befor get black daily\n Neutral 15 laptop week befor
1264 Not so happy with lappy..Slow in all manner\n happi lappyslow manner\n Neutral 8 happy lappy slow manner
1265 Camera quality,sound quality nd processor quality low...overall gud\n camera qualitysound qualiti nd processor qualiti lowoveral gud\n Neutral 8 camera quality sound quality nd processor quality low overall gud
1266 Product is good .But Ms office is not registered .\n product good ms offic regist \n Positive 11 product good ms office
1267 The battery life is pretty good. I can watch upto 2 movies continuously for 6hrs straight of 3hrs each.\n the batteri life pretti good watch upto 2 movi continu 6hr straight 3hr each\n Positive 19 battery life good upto movies straight
1268 Highly recommend for the moderate use. Amazing Battery life. Full HD screen. Awesome Sound. Not for heavy gaming still 8gb ram runs everything smooth\n highli recommend moder use amaz batteri life full hd screen awesom sound heavi game still 8gb ram run everyth smooth\n Positive 24 moderate use amazing battery life full hd screen awesome sound heavy gaming gb ram smooth
1269 Budget LaptopHp is best to otherGood picture qualityBetter performance to other laptop in functionality and reliability\n budget laptophp best othergood pictur qualitybett perform laptop function reliability\n Positive 16 budget laptophp best othergood qualitybetter performance other laptop functionality reliability
1270 Perfect Laptop. 100% genuine product.\n perfect laptop 100 genuin product\n Positive 5 perfect laptop % genuine product
1271 Pls Don't buy on EMI'S they show it as NO Cost EMI but actually it's not they charging 14% interest n its cost higher than actual cost.\n pl dont buy emi show cost emi actual charg 14 interest n cost higher actual cost\n Positive 27 emi cost % interest cost higher actual cost
1272 Microsoft office Trial version is installed .Not able do any Microsoft office\n microsoft offic trial version instal abl microsoft office\n Neutral 12 microsoft office trial version able microsoft office
1273 Average product\n averag product\n Neutral 2 average product
1274 There is no laptop bag with this product and also no extra accessories also\n laptop bag product also extra accessori also\n Neutral 20 laptop bag product extra accessories
1275 For personal use & daughters college use.\n person use daughter colleg use\n Neutral 8 personal use daughters college use
1276 Working fine.\n work fine\n Positive 2
1277 Gud product in this price but if you want to start side numbers keys you should press num lock key\n gud product price want start side number key press num lock key\n Positive 20 gud product price side numbers keys num lock key
1278 Good product..\n good product\n Positive 2 good product
1279 Battery life is good nd properly work.....Bt Microsoft store not properly work\n batteri life good nd properli workbt microsoft store properli work\n Positive 12 battery life good nd bt microsoft store
1280 Nice but not in look\n nice look\n Positive 5 nice look
1281 nice fast laptop, but my MS office is not working....plz help\n nice fast laptop ms offic workingplz help\n Positive 11 nice fast laptop ms office
1282 Old generation old processor\n old gener old processor\n Neutral 4 old generation old processor
1283 Good Lappi worth it\n good lappi worth it\n Positive 4 good lappi worth
1284 Product is good but processing speed is slow. Delhivery Courier service is also not good.\n product good process speed slow delhiveri courier servic also good\n Positive 15 product good speed slow delhivery courier service good
1285 Nice ,Brand HP product\n nice brand hp product\n Positive 4 nice brand hp product
1286 Very good product.\n good product\n Positive 3 good product
1287 The product is good but since it's hdd bit slow even if the ram is 8gb. Disability is okay.\n product good sinc hdd bit slow even ram 8gb disabl okay\n Positive 19 product good hdd bit slow ram gb disability okay
1288 Display quality is very bad.\n display qualiti bad\n Negative 5 display quality bad
1289 Every thing is good as per my expectations ☺all over nice laptop...with good quality.\n everi thing good per expect ☺all nice laptopwith good quality\n Positive 14 thing good expectations nice laptop good quality
1290 Good for normal use.Keyboard is wide and not so useful for typing. Slow due to windows.\n good normal usekeyboard wide use type slow due windows\n Positive 16 good normal use.keyboard wide useful typing slow windows
1291 Super\n super\n Positive 1 super
1292 Very nice, good\n nice good\n Positive 3 nice good
1293 If we watched more than 1 hour eyes start burning.\n watch 1 hour eye start burning\n Neutral 10 more hour eyes
1294 Best laptop for students its battery backup was very good its gameplay also good\n best laptop student batteri backup good gameplay also good\n Positive 14 best laptop students battery backup good gameplay good
1295 I love it Hp laptop and its service is so good\n love hp laptop servic good\n Positive 11 laptop service good
1296 Get defected laptop very upset with amazon service\n get defect laptop upset amazon service\n Negative 8 laptop upset amazon service
1297 Where I can Complaint about my laptop.Screen is not working...\n complaint laptopscreen working\n Negative 10 laptop.screen
1298 Very good laptop, better back up not up to the expectation\n good laptop better back expectation\n Positive 11 good laptop expectation
1299 It is best under the price range of 30-40k. overall good.\n best price rang 3040k overal good\n Positive 11 best price range 40k overall good
1300 Nice but it was?\n nice was\n Positive 4 nice
1301 Descent purchase at this price.\n descent purchas price\n Neutral 5 descent purchase price
1302 Good laptop with good configuration @ low price\n good laptop good configur low price\n Positive 8 good laptop good configuration low price
1303 Very slow process don't buy HP laptop's\n slow process dont buy hp laptops\n Neutral 7 slow process hp laptop
1304 Overall, the product is very good in this price range.\n overal product good price range\n Positive 11 product good price range
1305 Thanks Amazon this is superb quality product\n thank amazon superb qualiti product\n Positive 7 thanks amazon superb quality product
1306 Good but the os is lagging\n good os lagging\n Positive 6 good os
1307 Worst ....Not working properly .. Disappointed 😑\n worst work properli disappoint 😑\n Negative 7 worst
1308 Good packaging. Nice buy\n good packag nice buy\n Positive 4 good packaging nice buy
1309 The laptop is too slow and dont buy this product\n laptop slow dont buy product\n Neutral 10 laptop slow product
1310 Beautiful look\n beauti look\n Neutral 2 beautiful
1311 Overall very good product and value for money\n overal good product valu money\n Positive 8 good product value money
1312 5-6 hour battery backup it's perfect for me?\n 56 hour batteri backup perfect me\n Positive 8 hour battery backup perfect
1313 Totally good\n total good\n Positive 2 good
1314 Best product in this price\n best product price\n Positive 5 best product price
1315 Very Nice and Excellent Product.\n nice excel product\n Positive 5 nice excellent product
1316 Audio problem when using with headphones\n audio problem use headphones\n Negative 6 audio problem headphones
1317 Except battery removal problem otherwise superb\n except batteri remov problem otherwis superb\n Positive 6 battery removal problem superb
1318 All are good but battery life is a some problem\n good batteri life problem\n Positive 11 good battery life problem
1319 Ok good\n ok good\n Positive 2 good
1320 SSD hard disk is best.\n ssd hard disk best\n Positive 5 ssd hard disk best
1321 Bad product hp laptop\n bad product hp laptop\n Negative 4 bad product hp laptop
1322 Good product. Value of worth\n good product valu worth\n Positive 5 good product value worth
1323 Good product..I am satisfied..\n good producti satisfied\n Positive 4 good product satisfied
1324 Good looking for this product\n good look product\n Positive 5 good product
1325 Okay\n okay\n Positive 1
1326 Good to use\n good use\n Positive 3 good
1327 Very slow in processing\n slow processing\n Neutral 4 slow processing
1328 Good product and Maza aa Gaya\n good product maza aa gaya\n Positive 6 good product maza aa gaya
1329 Good Purchase\n good purchase\n Positive 2 good purchase
1330 It's A very good laptop\n good laptop\n Positive 5 good laptop
1331 🔊Sound quality optimum\n 🔊sound qualiti optimum\n Neutral 3 sound quality optimum
1332 I like this product\n like product\n Positive 4 product
1333 Product is good\n product good\n Positive 3 product good
1334 good for multitasking\n good multitasking\n Positive 3 good
1335 It is too slow ,\n slow \n Neutral 5 slow
1336 Superb\n superb\n Positive 1 superb
1337 Hello, guyz.. I m writing this review after using it around 15 days. I was olso confused about the value, but believe me.. I m fully satisfied with my lappy.. Battery life is 4 hours or even more.. Sound is good.. Look... Nd weight is killer... Ossam product in short...\n hello guyz write review use around 15 day olso confus valu believ fulli satisfi lappi batteri life 4 hour even sound good look nd weight killer ossam product short\n Negative 50 guyz review days confused value satisfied lappy battery life hours more sound good nd weight killer ossam product short
1338 WOrst product by HP. Its warranty period is of 1 year and in this one year, 3 times i had to give it to its customer care.Worst customer care service. Never responded though i have tweeted them also for same.Customer service executive suggests to keep the updated off or the speed of the system will slow further.My past experience with Lenevo and Acer were so good. I regret for trying HP laptop. Wont buy HP products in future for sure.\n worst product hp warranti period 1 year one year 3 time give custom careworst custom care servic never respond though tweet also samecustom servic execut suggest keep updat speed system slow furthermi past experi lenevo acer good regret tri hp laptop wont buy hp product futur sure\n Positive 80 worst product hp warranty period year year times customer care.worst customer care service same.customer service executive speed system further.my experience lenevo acer good hp laptop hp products future sure
1339 Whether this model has both SSD 256 and 1tb hard disk with 8gb ram????Please confirm\n whether model ssd 256 1tb hard disk 8gb rampleas confirm\n Negative 15 model ssd tb hard disk gb ram????please
1340 It is very bad product. I buy the note book on 25.06.2019 but i was faced mother board porblems. I call to hp support care but not solve this problems to till date. The service engineer was delayed for service.So, I totally lost for money.Dear sir, friends not for buy for this items.\n bad product buy note book 25062019 face mother board porblem call hp support care solv problem till date servic engin delay serviceso total lost moneydear sir friend buy items\n Negative 57 bad product note book 25.06.2019 mother board porblems hp care problems date service engineer service.so money.dear sir friends buy items
1341 Its nice to use laptop , using it since last 2 months , working file till the time , sound quality is good and display is also good.\n nice use laptop use sinc last 2 month work file till time sound qualiti good display also good\n Positive 28 nice laptop last months file time sound quality good display good
1342 At present no problem, easy used to work . Beautiful look. Customer happy .\n present problem easi use work beauti look custom happi \n Negative 14 present problem easy beautiful look customer happy
1343 I purchased it 6 month ago, but i would surely recommend Dell instead of HP.I m software dev by profession and this laptop irritated me by its slow speed nd i had to buy another one due to its slow performance\n purchas 6 month ago would sure recommend dell instead hpi softwar dev profess laptop irrit slow speed nd buy anoth one due slow performance\n Positive 41 month dell hp.i m software dev profession laptop slow speed nd one slow performance
1344 All are good, it is good laptop for students and practice purpose . I suggest to purchase from amzone only . Because you will get in less rate..\n good good laptop student practic purpos suggest purchas amzon get less rate\n Positive 28 good good laptop students practice purpose amzone less rate
1345 I will like this product very much for gaming it's screen is also nice easy to charge best product 👌\n like product much game screen also nice easi charg best product 👌\n Positive 20 product screen nice easy best product
1346 I am regretting after buying..please don't waste your money\n regret buyingpleas dont wast money\n Negative 9 money
1347 I purchased HP laptop from Amazon,it's worth buying n d product is in excellent condition.am satisfied.thank you Amazon\n purchas hp laptop amazonit worth buy n product excel conditionam satisfiedthank amazon\n Positive 18 hp laptop amazon worth d product excellent condition.am satisfied.thank
1348 Worth a penny\n worth penny\n Positive 3 worth penny
1349 I have not received the warranty and guaranty card.it is missing from the box.\n receiv warranti guaranti cardit miss box\n Negative 14 warranty guaranty box
1350 It's very slow, I will not suggest it tutti anyone.\n slow suggest tutti anyone\n Neutral 10 slow
1351 Best choice\n best choice\n Positive 2 best choice
1352 love it\n love it\n Positive 2
1353 Kindly arrange the technician as my laptop is not working.Trying to call HP toll free but unable to connect them\n kindli arrang technician laptop workingtri call hp toll free unabl connect them\n Positive 20 technician laptop hp toll free unable
1354 Need proper bill\n need proper bill\n Neutral 3 proper bill
1355 Good product. Less wait. Fast\n good product less wait fast\n Positive 5 good product less
1356 Good work\n good work\n Positive 2 good work
1357 satisfied\n satisfied\n Positive 1 satisfied
1358 i got ms office only for 1 month......please read the details and configuration carefully.....ok\n got ms offic 1 monthpleas read detail configur carefullyok\n Neutral 14 ms office month details configuration
1359 NOTE :@ Its Available on other Online stores as well, so check before you purchase.@ This model don't have Touchscreen, so note that.For using this device for couple of weeks, following are the observations from Normal User point of view.First I am mentioning the Specs and then I will explain the User Experience.Following are the Specifications :------------------------------------------# Intel® Core™ i3-7020U processor# 1 TB storage, 4GB DDR-4 RAM# Integrated Intel 620 Graphics# 14 inch HD Display with Resolution 1366*768.# 3-cell (41WHR) battery & Windows 10 OS.Following is the my user Experience :BUILD-QUALITY :------------------------# It has good build quality compared to price.# The top surface has matte finish and has good grip.# Speakers has good output.# It weighs around 1.5 KG, which is moderate weight considering the size.# Finally it looks good.DISPLAY :------------# HD LED screen with a resolution of 1366*768 performs great.# Colours are Punchy.# Contrast is well above average.# Display performs well upto my expectations.KEYBOARD & SPEAKERS :------------------------------------# Keyboard Doesn't have backlit.# Feedback from keyboard is good.# It Doesn't have a Numpad.# Placement pf speakers are good,# Has Enough sound output.# Performance is above average.BATTERY PERFORMANCE :--------------------------------------# Its average performing battery.# With full charge I used to clock above 3 hours of battery backup.# It charges under 3 hours.# Even with Medium Brightness and heavy Multitasking, I used to get above 2 hours of backup.# So overall battery backup is below average.SYSTEM PERFORMANCE :------------------------------------# I had NO problems while using this laptop for surfing and browsing internet.# Small and medium games also runs smoothly on it.# It Doesn't have fingerprint scanner.# Has 1x USB 2 and 2x USB 3 ports which are handy combination.# So to conclude its Average laptop.VERDICT :-------------Its a good device if the price would have being around 25k. UPS of this device is 7th gen processor, decent Storage and HP brand reliability. But apart from that there's hardly anything to attract. It lacks fingerprint sensor, Backlit keyboard, decent battery backup, better graphics and better display resolution. If there's a deal and if its available around 25k then go for it, else invest few thousand more and go for better device. For 30k its Not worth buying.\n note avail onlin store well check purchas model dont touchscreen note thatfor use devic coupl week follow observ normal user point viewfirst mention spec explain user experiencefollow specif intel® core™ i37020u processor 1 tb storag 4gb ddr4 ram integr intel 620 graphic 14 inch hd display resolut 1366768 3cell 41whr batteri window 10 osfollow user experi buildqual good build qualiti compar price top surfac matt finish good grip speaker good output weigh around 15 kg moder weight consid size final look gooddisplay hd led screen resolut 1366768 perform great colour punchi contrast well averag display perform well upto expectationskeyboard speaker keyboard doesnt backlit feedback keyboard good doesnt numpad placement pf speaker good enough sound output perform averagebatteri perform averag perform batteri full charg use clock 3 hour batteri backup charg 3 hour even medium bright heavi multitask use get 2 hour backup overal batteri backup averagesystem perform problem use laptop surf brows internet small medium game also run smoothli doesnt fingerprint scanner 1x usb 2 2x usb 3 port handi combin conclud averag laptopverdict good devic price would around 25k up devic 7th gen processor decent storag hp brand reliabl apart there hardli anyth attract lack fingerprint sensor backlit keyboard decent batteri backup better graphic better display resolut there deal avail around 25k go els invest thousand go better devic 30k worth buying\n Positive 360 available other online stores model touchscreen device couple weeks observations normal user point view.first specs user specifications intel core i3 processor tb storage gb ddr-4 # intel graphics inch hd display resolution 41whr battery os.following user experience build quality good build quality price # top surface finish good grip # speakers good output kg moderate weight size good.display hd screen resolution great # colours punchy # contrast average # display upto expectations.keyboard speakers # keyboard # feedback keyboard good numpad placement pf speakers good # enough sound output # performance average.battery performance average battery # full charge hours battery backup # hours medium brightness heavy multitasking hours backup # overall battery backup average.system performance # problems laptop surfing internet # small medium games fingerprint scanner # 1x usb usb ports handy combination # average laptop.verdict good device price 25k ups device 7th gen processor decent storage hp brand reliability fingerprint sensor backlit keyboard decent battery backup better graphics better display resolution deal available 25k few more better device 30k worth buying
1360 Honest Review after using 3 months.I am Digital Marketer by profession and I need machine which can easily handle my heavy excel file and data work. I found this laptop good but still it is not at my level. If only accessing file, mails, PPT etc is concerned then it is the best laptop at this price range.I also have issue with the mouse pad, as the mouse which is coming up with this model is basic touchpad and not a multi touch pad.Rest everything is good.Thanks for reading! Hope this helps.Also, Get 10% Cashback by Ordering through vqr .in/13\n honest review use 3 monthsi digit market profess need machin easili handl heavi excel file data work found laptop good still level access file mail ppt etc concern best laptop price rangei also issu mous pad mous come model basic touchpad multi touch padrest everyth goodthank read hope helpsalso get 10 cashback order vqr in13\n Positive 100 honest review months.i digital marketer profession machine heavy excel file data work laptop good level file mails ppt concerned best laptop price range.i issue mouse pad mouse model basic touchpad multi touch good.thanks reading helps.also % cashback vqr
1361 Best in looks, slim, light weight, display is awesome.....Performance as per specifications is good...It's a Beauty...Bought after so much research...Confused between Lenovo 330s and Dell latitude 14 inch series...It's much better than that....Would recommend this..\n best look slim light weight display awesomeperform per specif goodit beautybought much researchconfus lenovo 330 dell latitud 14 inch seriesit much better thatwould recommend this\n Positive 35 best looks slim light weight display awesome performance specifications good beauty much research lenovo 330s dell latitude inch series better
1362 Overall pretty good package....pros:Light weight..Decent battery backup...Good looking smoke grey colour..Good build quality...Cons:Inbuilt battery non removableGlossy display( mat display is good here it is glossy so reflection is there)Display quality is not uptomarkSound quality is averageSystem is little laggy... Not that much\n overal pretti good packageproslight weightdec batteri backupgood look smoke grey colourgood build qualityconsinbuilt batteri non removableglossi display mat display good glossi reflect theredisplay qualiti uptomarksound qualiti averagesystem littl laggi much\n Positive 42 overall good package pros light weight decent battery backup good looking smoke grey colour good build quality cons inbuilt battery non removableglossy display mat display good glossy reflection there)display quality uptomarksound quality averagesystem little laggy much
1363 Nice product for this range.This lappy is really awesome if u buy around 26K. I bought it in 22990₹.Actual price was : 25990₹Instant discount applied from SBI card : 2000₹Received 1000₹ in Amazon Pay Balance : 1000₹Now Final price is 22990₹ (Great deal)\n nice product rangethi lappi realli awesom u buy around 26k bought 22990₹actual price 25990₹instant discount appli sbi card 2000₹receiv 1000₹ amazon pay balanc 1000₹now final price 22990₹ great deal\n Positive 43 nice product range.this lappy awesome .actual price instant discount sbi card amazon pay balance final price great deal
1364 I bought this laptop a month back during Amazon great indian festival. Been using it since then.The product is light weight, Sound is good, battery backup is good. But the important of all , the performance is horrible.I've exchanged my 5 year old HP laptop with 3rd gen i5 processor. This has a 7th gen i3 processor & still it's not even half good as my old one.The system lags , ALWAYS.Takes a lot of time to process any operations.I made a fresh install of windows 10 by created a recovery media & it's a bit better than how it used to be.I realized this is a faulty product but i was late by that time. the last date for return has already completed 2 days before that. So now i'm stuck with this super slow laptop, No where to go..and the worst thing.. RAM has only 1 slot with 4Gb, can't upgrade.\n bought laptop month back amazon great indian festiv use sinc thenth product light weight sound good batteri backup good import perform horribl exchang 5 year old hp laptop 3rd gen i5 processor 7th gen i3 processor still even half good old oneth system lag alwaystak lot time process operationsi made fresh instal window 10 creat recoveri media bit better use bei realiz faulti product late time last date return alreadi complet 2 day im stuck super slow laptop goand worst thing ram 1 slot 4gb cant upgrade\n Positive 154 laptop month amazon great indian festival product light weight sound good battery backup good important performance horrible.i've year old hp laptop 3rd gen i5 processor 7th gen i3 processor good old one.the system lot time fresh install windows recovery media bit faulty product late time last date return days stuck super slow laptop worst thing ram slot gb
1365 Please DO NOT buy UP product as I am stuck and wasted around 30K.System hangs every second and no support.\n pleas buy product stuck wast around 30ksystem hang everi second support\n Positive 20 product stuck 30k.system hangs second support
1366 Purchased this Lappy for my Wife at the Amazon Sale for 23k after applying all discounts. I would say it is pretty good for the price. Looks sleek and slim, is light to carry around, screen display and sound is also good. Battery Life is pretty good at around 6+ Hrs. There is no fast charging though. As stated by others, performance is a slight issue. It is not fast or snappy and can take few seconds to launch apps. To get around it, i have added 4 GB Crucial 2400 RAM in Dual Channel and increased it to 8 GB. Though it is a challenge to remove the Back Cover to insert the RAM. HP has not made it end user friendly. Now, it responds better than before. Please do consider upgrading RAM to get around the slowness issue. Overall, it is a good laptop for doing basic tasks and light office work.\n purchas lappi wife amazon sale 23k appli discount would say pretti good price look sleek slim light carri around screen display sound also good batteri life pretti good around 6 hr fast charg though state other perform slight issu fast snappi take second launch app get around ad 4 gb crucial 2400 ram dual channel increas 8 gb though challeng remov back cover insert ram hp made end user friendli respond better pleas consid upgrad ram get around slow issu overal good laptop basic task light offic work\n Positive 154 lappy wife amazon sale discounts good price sleek slim light screen display sound good battery life good hrs fast others performance slight issue fast snappy few seconds apps gb crucial ram dual channel gb challenge back cover ram hp user friendly better upgrading ram slowness issue good laptop basic tasks light office work
1367 Overall it's a nice package provided if you get it under 28k or 29kSound quality is awesome , being a win10 os on 4gb ram lags sometime but that is manageable , looks good ,battery life is acceptable , a complete value for money buy given in this range .Competition is fierce in this range so choose according to your requirements mine was portability and in this area it aces given its dynamics and above all THANK U HP & AMAZON\n overal nice packag provid get 28k 29ksound qualiti awesom win10 os 4gb ram lag sometim manag look good batteri life accept complet valu money buy given rang competit fierc rang choos accord requir mine portabl area ace given dynam thank u hp amazon\n Positive 81 nice package 28k 29ksound quality awesome win10 os gb ram manageable good battery life acceptable complete value money buy range .competition fierce range requirements mine portability area dynamics u hp amazon
1368 This laptop has 7th generation i3 processor with 4gb ram and 1tb HDD, still from the first usage only I found that this laptop is 20 times slower than my 5 year old Pentium Lenovo laptop.Once you make the payment your payments also gets strucked with Amazon and also the policy is not at all customer friendly, they will not initiate refunds so that you can buy a new and different model if u want, you will have to settle down with the same model. I will be getting that same model again today, hope my 31000/- bucks does not go in drain as Amazon has confirmed that the 2nd product but same model will be working great. They said they will ensure this. I hope I don't have to go through the same pain and agony again.\n laptop 7th gener i3 processor 4gb ram 1tb hdd still first usag found laptop 20 time slower 5 year old pentium lenovo laptoponc make payment payment also get struck amazon also polici custom friendli initi refund buy new differ model u want settl model get model today hope 31000 buck go drain amazon confirm 2nd product model work great said ensur hope dont go pain agoni again\n Positive 138 laptop 7th generation i3 processor gb ram tb hdd first usage laptop times slower year old pentium lenovo laptop.once payment payments amazon policy customer friendly refunds new different model same model same model today bucks drain amazon 2nd product same model same pain agony
1369 I bought the brand new laptopn but when it came it was locked by user and i found that the laptop was used by someone... amazon technician also visited and approved the same but nothing happened after that as well. What should I do now?\n bought brand new laptopn came lock user found laptop use someon amazon technician also visit approv noth happen well now\n Positive 46 brand new laptopn user laptop amazon technician same
1370 Pathetic, as expected online not trustworthy\n pathet expect onlin trustworthy\n Positive 6 pathetic trustworthy
1371 I bought this laptop about 2 weeks back and used it twice yet. The speed is pathetic, I am not sure if this is an original HP product. Unfortunately the last date of return was yesterday, so not even able to return it now.\n bought laptop 2 week back use twice yet speed pathet sure origin hp product unfortun last date return yesterday even abl return now\n Positive 44 laptop weeks speed pathetic sure original hp product last date return yesterday able
1372 This laptop is good for office work only. Not recommended for performing heavy work like playing games and video editing work.\n laptop good offic work recommend perform heavi work like play game video edit work\n Positive 21 laptop good office work heavy work games video editing work
1373 Beautiful design and very lightweight. Comes with Core i3 and good for basic usage\n beauti design lightweight come core i3 good basic usage\n Positive 14 beautiful design lightweight core i3 good basic usage
1374 Combination does not work 4Gb Ram is pretty slow .I increased the Ram to 8 GB. Now is bit fine ,had place laptop decal / sticker coz it looks dull .. well for me I am happy with my purchase depends on your requirement .. Just increase your Ram max 2500/3000 with service charge will do your college or office stuff be smart and wise ..\n combin work 4gb ram pretti slow increas ram 8 gb bit fine place laptop decal sticker coz look dull well happi purchas depend requir increas ram max 25003000 servic charg colleg offic stuff smart wise \n Positive 69 combination gb ram slow ram gb bit fine place laptop decal sticker coz dull happy purchase requirement ram max service charge college office stuff smart wise
1375 The product is one of the worst functioning laptop. The product just hanging and i3 processors performance is pathetic and cant run basic functions. Clearly a specification created by HP to be sold thru amazon so that the buyers are stuck with the maze of Amazon support and question and answers. We are sitting on 2 laptops that have been nonfunctional for more than a month. We tried return policy and now been told this cannot happen with amazon for these products. so clearly a con job by both amazon and HP as joint party.\n product one worst function laptop product hang i3 processor perform pathet cant run basic function clearli specif creat hp sold thru amazon buyer stuck maze amazon support question answer sit 2 laptop nonfunct month tri return polici told cannot happen amazon product clearli con job amazon hp joint party\n Positive 95 product worst functioning laptop product i3 processors performance pathetic basic functions specification hp amazon buyers maze amazon support question answers laptops nonfunctional more month return policy amazon products con job amazon hp joint party
1376 Laptop looks very compact and impressive(Build Quality). Performance is average, can’t complain as the ram is only 4GB. By default the colors in display looked washed out and dull, however you can make it vibrant by increasing the saturation levels (to 30) in intel HD graphic settings after which display looks amazing and vivid.All in all a great buy at the given price point. Got it for 27500\n laptop look compact impressivebuild qualiti perform averag can’t complain ram 4gb default color display look wash dull howev make vibrant increas satur level 30 intel hd graphic set display look amaz vividal great buy given price point got 27500\n Positive 68 laptop compact impressive(build quality performance average t ram gb default colors display dull vibrant saturation levels intel hd graphic settings display amazing vivid.all great buy price point
1377 Very bad product. After 2 weeks it started giving display problem. Speed is super slow. Heating issues. One cant tolerate its speed of operating. Can not do anything on it within 2 months repaired it almost 3 4 times. Worst part is problem is still not solved. No one ready to take responsibility. Please do not buy. Waste of money and after that waste of energy to call them again n again.\n bad product 2 week start give display problem speed super slow heat issu one cant toler speed oper anyth within 2 month repair almost 3 4 time worst part problem still solv one readi take respons pleas buy wast money wast energi call n again\n Negative 81 bad product weeks display problem speed slow heating issues speed operating months times worst part problem one ready responsibility waste money waste energy
1378 Fast delivery and the item is superb and genuine.\n fast deliveri item superb genuine\n Positive 9 fast delivery item superb genuine
1379 As a budget laptop it does the absolute bare minimum.Pros:Light enough to carry around.Decent battery life (3-4 hrs with normal usage)1TB HDD allows for lots of storageCons:Very slow in booting (~3 mins to welcome screen) in spite of having Win 10.Very slow in running apps. Office applications take almost 20 secs to initialize fully.Reflective screen. Hard to see with light source behind you. Gets dirty easilyBelow average sound quality.Overpriced. Belongs in the 20k range\n budget laptop absolut bare minimumproslight enough carri arounddec batteri life 34 hr normal usage1tb hdd allow lot storageconsveri slow boot 3 min welcom screen spite win 10veri slow run app offic applic take almost 20 sec initi fullyreflect screen hard see light sourc behind get dirti easilybelow averag sound qualityoverpr belong 20k range\n Positive 74 budget laptop absolute bare minimum.pros light around.decent battery life hrs normal usage)1 tb hdd lots storagecons slow screen spite slow apps office applications secs fully.reflective screen hard light source dirty easilybelow average sound 20k range
1380 Worst product ..Never buy it...Looks like a fake product. And hp support is extremely poor. They never help.See the screen. Hardly been a month of buying and laptop throwing tantrums.Regretting my decision very badly.\n worst product never buy itlook like fake product hp support extrem poor never helpse screen hardli month buy laptop throw tantrumsregret decis badly\n Negative 34 worst product fake product hp support poor screen month buying laptop decision
1381 Light weight is a definite plus.However, performance is very slow. I had to put an extra 4 GB RAM & a 250 GB SSD to make it bearable.\n light weight definit plushowev perform slow put extra 4 gb ram 250 gb ssd make bearable\n Neutral 29 light weight definite plus.however performance slow extra gb ram gb ssd bearable
1382 Everything is good about this laptop. Just one it is very slow. Although u can fix it by uninstalling the software on start up. Also I have purchased it on Amazon in great price 15,500 including exchange and cashback during great Indian festival. Also you gotta great battery life lasts for 7 hours easily.Also it has fast charger about 90 percent in 1.5 hours.\n everyth good laptop one slow although u fix uninstal softwar start also purchas amazon great price 15500 includ exchang cashback great indian festiv also gotta great batteri life last 7 hour easilyalso fast charger 90 percent 15 hours\n Positive 64 good laptop slow software start amazon great price exchange cashback great indian festival great battery life hours fast charger percent hours
1383 Ordered this product twice! Received faulty devices once, got it replaced. Ordered for the second time, and product stopped working after the return date had passed. Stuck with it now!\n order product twice receiv faulti devic got replac order second time product stop work return date pass stuck now\n Negative 30 product faulty devices second time product return date stuck
1384 Sleek, slim and light weight laptop. A great deal.if you are looking for a laptop that can be carried around with ease. However, the performance is abysmal. But you can get rid of the problem by upgrading the RAM to atleast 8 GB ( expandable upto 16GB as per spec). Furthermore, you could add an SSD to improve the boot speed. I purchased this machine for running MATLAB, but struggled with the default 4 GB RAM. Added another 4GB ( Crucial) and now it works fine. Next plan is to add an SSD.\n sleek slim light weight laptop great dealif look laptop carri around eas howev perform abysm get rid problem upgrad ram atleast 8 gb expand upto 16gb per spec furthermor could add ssd improv boot speed purchas machin run matlab struggl default 4 gb ram ad anoth 4gb crucial work fine next plan add ssd\n Positive 93 sleek slim light weight laptop great deal.if laptop ease performance abysmal problem ram atleast gb expandable upto spec ssd boot speed machine matlab default gb ram gb crucial next plan ssd
1385 This is very low quality assemble. After 3 months ot started malfunctioning. I had to completely wipe out and reinstall the complete OS once. Still it is not in good condition. Too slow. Avoid buying with such low RAM which is mostly not compatible with windows 10. I would not recommend to buy this product unless it is for a student.\n low qualiti assembl 3 month ot start malfunct complet wipe reinstal complet os still good condit slow avoid buy low ram mostli compat window 10 would recommend buy product unless student\n Neutral 61 low quality assemble months complete os good condition slow such low ram compatible windows product student
1386 The laptop display was corrupted within 2 days of usage. Apparently one of the rubbers in a corner was missing right from the time at was delivered. HP engineer noted this after inspection. Despite my best efforts to convince them that the laptop display I wasn't at fault, HP squarely put the blame upon me. It was such a sick and bad experience dealing with HP and their local service partner TVS electronics in Gurgaon. The folks there never answer your calls and close cases without giving a ear to what the customer is saying. I have dealt with Dell service (for a laptop purchased again on Amazon) and their service is far far better and professional.\n laptop display corrupt within 2 day usag appar one rubber corner miss right time deliv hp engin note inspect despit best effort convinc laptop display wasnt fault hp squar put blame upon sick bad experi deal hp local servic partner tv electron gurgaon folk never answer call close case without give ear custom say dealt dell servic laptop purchas amazon servic far far better professional\n Positive 118 laptop display days usage rubbers corner right time hp engineer inspection best efforts laptop display fault hp blame sick bad experience hp local service partner electronics gurgaon folks calls close cases ear customer dell service laptop amazon service better professional
1387 The laptop takes 2 minutes to boot up. If i want to run a program like chrome or even open a folder, the laptop takes ages to execute that command. Some software issue so i asked amazon for help. the technician comes over and takes a look at the laptop for 5 minutes and says its a software issue so they can't help. Approached hp customer care. They said its because the ram needs to be upgraded. Why would i need to upgrade the ram in a new laptop without any programs installed? The laptop has been lying like this since the past 6-7 months. Nobody can use it at the risk of going into depression.\n laptop take 2 minut boot want run program like chrome even open folder laptop take age execut command softwar issu ask amazon help technician come take look laptop 5 minut say softwar issu cant help approach hp custom care said ram need upgrad would need upgrad ram new laptop without program instal laptop lie like sinc past 67 month nobodi use risk go depression\n Positive 116 laptop minutes program chrome folder laptop ages command software issue amazon help technician look laptop minutes software issue hp customer care ram ram new laptop programs laptop past months risk depression
1388 I suggest to spend some more funds and buy laptop with better processor\n suggest spend fund buy laptop better processor\n Positive 13 more funds laptop better processor
1389 Chose this one for my sister. My first impression after opening the box was, how tiny and light weight this laptop is. Easy to hold and very convenient to carry.Talking about battert life, it's decent. I would say it would give you juice for around 3 to 4 hours( normal usage excluding games).Screen quality is also decent but not as immersive as those in higher end ones( don't expect great camera quality as it's below average)I would say after using the laptop and hearing no issues from my sister till now 😜I think this laptop is value for money laptop(NO EMI option is great /some bank discounts).I would definitely recommend this one who are looking for a decent looking and fast laptop. You can also add ssd card to fasten its processing and booting speed.\n chose one sister first impress open box tini light weight laptop easi hold conveni carrytalk battert life decent would say would give juic around 3 4 hour normal usag exclud gamesscreen qualiti also decent immers higher end one dont expect great camera qualiti averagei would say use laptop hear issu sister till 😜i think laptop valu money laptopno emi option great bank discountsi would definit recommend one look decent look fast laptop also add ssd card fasten process boot speed\n Negative 135 one sister first impression box tiny light weight laptop easy convenient battert life decent juice hours normal usage games).screen quality decent immersive higher end ones great camera quality average)i laptop issues sister laptop value money laptop(no option great /some bank discounts).i one decent looking fast laptop ssd card processing booting speed
1390 The laptop received was faulty, I am following up like a crazy.\n laptop receiv faulti follow like crazy\n Neutral 12 laptop faulty crazy
1391 The laptop is quite slow. It is however quite light and can be easily carried. I feel that my earlier 8 year old laptop was better built.My review after 5 months....Useless laptop. Freezes frequently. Very, very slow. Please dear Amazonians don't buy ! I am now using my old laptop. Sad, money down the drain.Long term review.....I am giving a Tip to speed it up....DISABLE WINDOWS AUTOMATIC UPDATES. INSTALL AN ANTI VIRUS. THE LAPTOP WORKS FINE NOW!\n laptop quit slow howev quit light easili carri feel earlier 8 year old laptop better builtmi review 5 monthsuseless laptop freez frequent slow pleas dear amazonian dont buy use old laptop sad money drainlong term reviewi give tip speed updis window automat updat instal anti viru laptop work fine now\n Positive 79 laptop slow light earlier year old laptop better built.my review months useless laptop freezes slow dear amazonians old laptop sad money drain.long term review tip disable windows automatic updates anti virus laptop
1392 Slim and light. Looks very professional... little bit slow processing.. Average Camera.. Nice sounds quality..Very slow and poor processing .Plz Don't buy it...\n slim light look profession littl bit slow process averag camera nice sound qualityveri slow poor process plz dont buy it\n Neutral 23 slim light professional little bit slow processing average camera nice quality slow poor processing .plz
1393 Dead after 2 Days, very disappointed.\n dead 2 day disappointed\n Negative 6 dead days disappointed
1394 Bought this last week. The only work I have is working on word documents and browsing. Even then, this laptop is sluggish at best. Windows 10 is not supported by a mere 4 GB RAM. So unless there is an option to enhance the RAM, this laptop is not worth it. As we say in hindi, 'Kaam Chalau'. I would rather spend few thounds extra and buy a better version.Other features like battery and screen quality are good. The track pad is pretty tardy. Unworkable perhaps.\n bought last week work work word document brows even laptop sluggish best window 10 support mere 4 gb ram unless option enhanc ram laptop worth say hindi kaam chalau would rather spend thound extra buy better versionoth featur like batteri screen qualiti good track pad pretti tardi unwork perhaps\n Positive 86 last week only work word documents browsing laptop sluggish windows mere gb ram option ram laptop worth hindi kaam chalau few thounds extra better version.other features battery screen quality good track pad tardy unworkable
1395 The product came i a good condition and on time. Gifted this to my father. The laptop is very lightweight and portable. The screen size is perfet for my dad. Battery life is decent and it performs the tasks of browsing and running some applications simultaneously quite decently. It's perfect for my dad's usage. Power users might want to see somewhere else. Windows 10 experience is good. My dad is happy, so I am happy.\n product came good condit time gift father laptop lightweight portabl screen size perfet dad batteri life decent perform task brows run applic simultan quit decent perfect dad usag power user might want see somewher els window 10 experi good dad happi happy\n Positive 75 product good condition time father laptop lightweight portable screen size perfet dad battery life decent tasks applications perfect dad usage power users windows experience good dad happy happy
1396 Best Laptop for light usage(Students), Not recommend for heavy gaming or Photoshops,firstly i got a faulty laptop (Fan not working),exchnged and got a New One..Processor - GoodSpeed - Not that Great, But It works better with Windows 8 and it feels quite lag in W10Ventilation - Fan vent. Is provided Below the Laptop (Very Bad)Price Point is Good\n best laptop light usagestud recommend heavi game photoshopsfirstli got faulti laptop fan workingexchng got new oneprocessor goodspe great work better window 8 feel quit lag w10ventil fan vent provid laptop badpric point good\n Positive 58 best laptop light usage(students heavy gaming photoshops faulty laptop fan new processor goodspeed great windows lag w10ventilation fan vent laptop bad)price point good
1397 Using this laptop from last 10 months,Screen quality is very worst. Color calibration is very disturbed,And very poor built quality.Internal locks get detached, when try to open lid keybord and keybord cover comes out.Registered a call for support on 24 of sept and today 10 oct. Still complain not resolved by HP.\n use laptop last 10 monthsscreen qualiti worst color calibr disturbedand poor built qualityintern lock get detach tri open lid keybord keybord cover come outregist call support 24 sept today 10 oct still complain resolv hp\n Negative 53 laptop last months screen quality worst color calibration disturbed poor quality.internal locks lid keybord keybord cover out.registered call support sept today oct . hp
1398 Light weight Laptop comes with Windows 10 Home OS. 1TB HDD is decent storage. 4GB DDR 4 memory gives the smooth operation. Longer Battery life - claims for 7 hours but last for more than 5 hours. Battery seems to be built- in. Don;t know how to get a replacement after expired. Need to take it to the service center, you cannot change it yourself. This is the only drawback. Overall I am Satisfied with this Laptop. Recommended.\n light weight laptop come window 10 home os 1tb hdd decent storag 4gb ddr 4 memori give smooth oper longer batteri life claim 7 hour last 5 hour batteri seem built dont know get replac expir need take servic center cannot chang drawback overal satisfi laptop recommended\n Positive 78 light weight laptop windows home os . tb hdd decent storage gb ddr memory smooth operation longer battery life claims hours last more hours battery built- don;t replacement service center only drawback satisfied laptop
1399 Remember, No MS- office preinstalled.Upgraded the RAM to 8GB, still lagard.Suggest to go for i5 if planning to use for official work\n rememb ms offic preinstalledupgrad ram 8gb still lagardsuggest go i5 plan use offici work\n Neutral 22 ms- office ram gb i5 official work
1400 Overall I would say great deal at this price pointI bought it at 25990 during great India festival saleThis is awesome and good for office worksIt justifies my needsI am not a game freak so I bought itIt carers me in all my office and education related work\n overal would say great deal price pointi bought 25990 great india festiv salethi awesom good offic worksit justifi needsi game freak bought itit carer offic educ relat work\n Positive 48 great deal price pointi great india festival salethis awesome good office worksit needsi game freak itit office education work
1401 Product rating 3.5.Ok, so I am writing this review after using this product for over a month.There are lot of reviews about this product on the web and even on Amazon, so there is a high possibility of creating a lot of confusion.Note below points and if you are ok, then buy this product without any second thought:1. Win 10 64 bit+ 4 gb Ram + i3 7th Generation, all this together won't provide you very great performance in any brand.2. Still, you will get a decent performance for browsing, using any softwares or even playing mid range games.3.If you go on to upgrade the Ram, things will work pretty well.4. HP comes with lot of preloaded softwares that will create a lag for the initial experience of around 15 mins for using the laptop. But after that everything works fine.5. It is pretty light weight and well built which enables it to carry around with ease.\n product rate 35ok write review use product monthther lot review product web even amazon high possibl creat lot confusionnot point ok buy product without second thought1 win 10 64 bit 4 gb ram i3 7th gener togeth wont provid great perform brand2 still get decent perform brows use softwar even play mid rang games3if go upgrad ram thing work pretti well4 hp come lot preload softwar creat lag initi experi around 15 min use laptop everyth work fine5 pretti light weight well built enabl carri around ease\n Neutral 157 product rating 3.5.ok review product month.there lot reviews product web amazon high possibility lot confusion.note points ok product second thought:1 bit+ gb ram i3 7th generation great performance brand.2 decent performance browsing softwares mid range games.3.if ram things well.4 hp lot softwares lag initial experience mins laptop fine.5 light weight ease
1402 We bought this for our office use. The general usage is only in excel, word and mails. Even for this activity, the system is dead slow. It switches off quite often. We did not expect this quality from reputed manufacturer like HP. We are disappointed.After submitting this response on 3rd July, not a single response from HP. This shows their careless attitude for defective model. I used to always buy HP product for personal use and official use. This attitude will change my mind and will not take HP at face value. Again disappointed.\n bought offic use gener usag excel word mail even activ system dead slow switch quit often expect qualiti reput manufactur like hp disappointedaft submit respons 3rd juli singl respons hp show careless attitud defect model use alway buy hp product person use offici use attitud chang mind take hp face valu disappointed\n Negative 95 office use general usage excel word mails activity system slow quality manufacturer hp disappointed.after response 3rd july single response hp careless attitude defective model hp product personal use official use attitude mind hp face value
1403 I feel sorry for Amazon for not ensuring the right product! Actually what I received might be a duplicate...The pre installed OS not working properly. I uninstalled it. Also, it doesn't has a barcode and nothing else and it made be high subspecies about its genuiness!Trust me 100% and avoid to buying it!\n feel sorri amazon ensur right product actual receiv might duplicateth pre instal os work properli uninstal also doesnt barcod noth els made high subspeci genuinesstrust 100 avoid buy it\n Negative 53 sorry amazon right product duplicate pre os barcode high subspecies genuiness!trust %
1404 Sir/ Mam,This for your kind information and necessary action that my laptop is still not functioning properly ,As few days back you people made second ID of mine but still same problem,Then I called back many times to call centre but nobody picked my call then I wentto service station of Ahmedabad , they guided me that I need to call on customer care and ask for pendriveand take your data in that pendrive and reinstall data again then I did same but still same problem.Now m unable to understand what to do to replace this laptop as my job work is in halt and I am loosing 5000rs per daydue to this laptop inefficiency , pls suggest who will bear this loss??Also i don’t want this laptop now , pls take it back from me as I need to purchase some other laptop and I dont have amount to purchase laptop again.Kindly expedite else I will go in court for the solution as my life is disturbed due to this non-sense product .Regards,Manish Sharma\n sir mamthi kind inform necessari action laptop still function properli day back peopl made second id mine still problemthen call back mani time call centr nobodi pick call wentto servic station ahmedabad guid need call custom care ask pendriveand take data pendriv reinstal data still problemnow unabl understand replac laptop job work halt loos 5000r per daydu laptop ineffici pl suggest bear lossalso don’t want laptop pl take back need purchas laptop dont amount purchas laptop againkindli expedit els go court solut life disturb due nonsens product regardsmanish sharma\n Positive 175 sir/ mam kind information necessary action laptop few days people second mine same problem many times centre call service station ahmedabad customer care pendriveand data pendrive reinstall data same same problem.now m unable laptop job work halt 5000rs daydue laptop inefficiency t laptop other laptop amount laptop expedite court solution life non - sense product .regards sharma
1405 Very good budget laptop for day to day job. Very light and handy to carry. Booting is very fast. Battery life is also very good with quick charging. No optical drive but it is generally not required now a days.\n good budget laptop day day job light handi carri boot fast batteri life also good quick charg optic drive gener requir days\n Positive 40 good budget laptop day day job light handy booting fast battery life good quick charging optical drive days
1406 Well built, fast and durable laptop. Got this for 23K. No regrets. Best laptop in this category. Light weight. Thanks seller and Amazon for the deal\n well built fast durabl laptop got 23k regret best laptop categori light weight thank seller amazon deal\n Positive 26 fast durable laptop 23k regrets best laptop category light weight thanks seller amazon deal
1407 Don't buy, seems hardware is not compatible with software.Takes almost 15 to be able to be able to start some work.Basic Excel or powerpoint keeps on hanging/freeze.Wish I could return this.Don't waste your money\n dont buy seem hardwar compat softwaretak almost 15 abl abl start workbas excel powerpoint keep hangingfreezewish could return thisdont wast money\n Positive 34 hardware compatible software.takes able able work.basic excel powerpoint freeze.wish this.don't money
1408 Problem in operating.System is very very slow from day one. HP customer care is also unable to repair it.System is if no use if issue is not resolved\n problem operatingsystem slow day one hp custom care also unabl repair itsystem use issu resolved\n Positive 28 problem operating.system slow day hp customer care unable it.system use issue
1409 Not at all meeting expectations, I still have my 5-year old Lenovo which performs better than this one... It keeps getting frozen at everything... has some major issues, especially for a brand new laptop, that too for a brand like HP & I haven't even installed anything big or major to slow it down soo much & it's only a few months old... I'm searching for my warranty information to return or get it replaced... I'm regretting choosing this over Lenovo bcuz I was getting a good deal, or so I thought...\n meet expect still 5year old lenovo perform better one keep get frozen everyth major issu especi brand new laptop brand like hp havent even instal anyth big major slow soo much month old im search warranti inform return get replac im regret choos lenovo bcuz get good deal thought\n Positive 92 meeting expectations old lenovo better one major issues brand new laptop brand hp big major soo few months old warranty information lenovo bcuz good deal
1410 it's one of the best deal I have made I have purchased this laptop for 24000 and got 1000 cashback during Diwali sale of 2018 it is amazing and also very lightweight initially i was afraid whether it an original one or a duplicte one but I have been using it for 3 months and facing no problem at all at this price i3,7th generation.\n one best deal made purchas laptop 24000 got 1000 cashback diwali sale 2018 amaz also lightweight initi afraid whether origin one duplict one use 3 month face problem price i37th generation\n Positive 65 best deal laptop cashback diwali sale amazing lightweight afraid original one months problem price i3,7th generation
1411 I have paid decent amount of money for this laptop.its compact and light.Only concern about the ram management, I feel like 4GB is not enough for the smooth performance.On offline mode its ok with 4GB RAM. however I have expanded to 8GB RAM and now its pretty much smooth.please not I won't recommend for the gammers.\n paid decent amount money laptopit compact lightonli concern ram manag feel like 4gb enough smooth performanceon offlin mode ok 4gb ram howev expand 8gb ram pretti much smoothpleas wont recommend gammers\n Positive 56 decent amount money laptop.its compact light.only concern ram management gb enough smooth performance.on offline mode ok gb ram gb ram smooth.please gammers
1412 Writing new review after 2 days of use Laptop heats a lot and doesn't has any cooling fansTakes 20 min. To even startDosen't has office inside it\n write new review 2 day use laptop heat lot doesnt cool fanstak 20 min even startdos offic insid it\n Negative 27 new review days use laptop lot min startdosen't office
1413 Amazon have sold me a pathetic product, I think it is a refurbished product, it has lot of hardware issues, I bought it for my husband as his birthday gift in March, we started using if since last 2 months and key board is giving problems, the connector between screen and keyboard makes noises as the lock keeps opening, please dont buy any electronics from Amazon\n amazon sold pathet product think refurbish product lot hardwar issu bought husband birthday gift march start use sinc last 2 month key board give problem connector screen keyboard make nois lock keep open pleas dont buy electron amazon\n Positive 66 amazon pathetic product refurbished product lot hardware issues husband birthday gift march last months key board problems connector screen keyboard noises lock opening electronics amazon
1414 ThIs laptop is bogus. Don't be fooled by the low price and loaded windows. The laptop though lightweight is highly bloated with pre built software's and the moment you switch on you will see the disk space is 100% consumed and 80%memory is consumed.. I bought this laptop one week to install some bi tools and boy I am super disappointed..\n laptop bogu dont fool low price load window laptop though lightweight highli bloat pre built softwar moment switch see disk space 100 consum 80memori consum bought laptop one week instal bi tool boy super disappointed\n Positive 62 laptop bogus low price windows laptop lightweight bloated pre software moment disk space % laptop week bi tools boy disappointed
1415 Laptop lags a lot,You will feel better when you remove all the pre installed app including the antivirus.Otherwise you gonna through it to wall on a Monday morning :P\n laptop lag lotyou feel better remov pre instal app includ antivirusotherwis gonna wall monday morn p\n Positive 29 laptop lot better pre installed app antivirus.otherwise wall monday morning
1416 First laptop had hardware issues and got the replacement ... Again for the new one key board spacebar not working..Spot on screen can be seen.. one of the worst product from HP.. I'm using HP devices since 2009 but never had this kind of experience!!!\n first laptop hardwar issu got replac new one key board spacebar workingspot screen seen one worst product hp im use hp devic sinc 2009 never kind experience\n Negative 46 first laptop hardware issues replacement new key board spot screen worst product hp hp devices kind experience
1417 Bought this for my wife as a replacement for my 9 year old Dell. I am a mac user and use windows at work. The build quality is good and i got it for 27k. For this price an HP light weight laptop is a steal though miss a back lit like the mac but except for that the product is good. Will write another long term review later.\n bought wife replac 9 year old dell mac user use window work build qualiti good got 27k price hp light weight laptop steal though miss back lit like mac except product good write anoth long term review later\n Positive 73 wife replacement year old dell mac user windows work build quality good 27k price hp light weight laptop steal back lit mac product good long term review
1418 31k down the drain , this is a bloddy 1 month old laptop and lags so much . It even lags in basic browsing let alone heavy usage . If you restart your pc it will take around 20 minutes and one request to every one please don't buy this product .\n 31k drain bloddi 1 month old laptop lag much even lag basic brows let alon heavi usag restart pc take around 20 minut one request everi one pleas dont buy product \n Negative 52 31k drain bloddy month old laptop basic browsing alone heavy usage pc minutes request one product
1419 i bought it for twenty six thousand and got two thousand rupees back on amazon pay. i was happy enough to get it dirt cheap but the happiness doesn't lasted it for much time. this laptop will really test your patience if you are using it for multi functions. rest all is good. if you are using chrome then use only chrome and nothing else.\n bought twenti six thousand got two thousand rupe back amazon pay happi enough get dirt cheap happi doesnt last much time laptop realli test patienc use multi function rest good use chrome use chrome noth else\n Positive 65 rupees amazon pay happy dirt cheap happiness much time laptop patience multi functions good chrome chrome
1420 For my home requirements, this fits the bill. Battery life is good and the laptop IS lightweight. Screen is reasonably ok. I’m not into gaming and, therefore, cannot comment on the processing speed.Overall good value for money\n home requir fit bill batteri life good laptop lightweight screen reason ok i’m game therefor cannot comment process speedoveral good valu money\n Positive 37 home requirements bill battery life good laptop lightweight screen ok gaming speed.overall good value money
1421 ITS NOT EXPECTED FROM HP. THE WINDOWS IS DEAD SLOW OR DEAD.DONT BUY THIS. With out any load and just to start the laptop it takes 20mins over all.If you open more than one tap in a browser then the system will hang and does not respond for longer time.WASTE OF MONEY AND WASTE OF TIME!!!\n expect hp window dead slow deaddont buy load start laptop take 20min allif open one tap browser system hang respond longer timewast money wast time\n Negative 56 hp windows slow dead.dont load laptop 20mins all.if more tap browser system longer time.waste money waste time
1422 Bad producat sale in online becous no micro soft excel in this laptop and no any one soft wear update on this so I suggest do not parches laptop in Online I m totally disopoited for this product in last 3 m9nth we have use this but in my working time 8 hours it is update on 5 house how to work with this I promise we don't parches any electronic product online becosued on other benefits recived on there\n bad producat sale onlin becou micro soft excel laptop one soft wear updat suggest parch laptop onlin total disopoit product last 3 m9nth use work time 8 hour updat 5 hous work promis dont parch electron product onlin becosu benefit reciv there\n Positive 80 bad producat sale online becous micro soft laptop soft wear update parches online m product last working time hours update house electronic product other benefits
1423 It's very very slow. I don't know whether they have delivered a faulty product but it takes sometimes minutes to open a folder or an application. I did cleaned up the temp files and stuffs but still no help. Looks, weight all are okay but if it can't serves it's actual purpose then what is the use of it? I am going to take it to a service center and get it checked anyway.\n slow dont know whether deliv faulti product take sometim minut open folder applic clean temp file stuff still help look weight okay cant serv actual purpos use go take servic center get check anyway\n Positive 74 slow faulty product minutes folder application temp files stuffs help looks weight okay actual purpose use service center
1424 This is a super slow laptop. It looks beautiful and handy.But one need speed.I suggest, never, never buy this product.I use it only to read PDFs and to watch movies and some browsing. But i can not even perform these small works perfectly.It takes a lot of time to open browser.5_10 minutes. It hangs a lot.You can buy, but believe me, you will regret.Rest, you wish.\n super slow laptop look beauti handybut one need speedi suggest never never buy producti use read pdf watch movi brows even perform small work perfectlyit take lot time open browser510 minut hang lotyou buy believ regretrest wish\n Positive 66 slow laptop beautiful speed.i product.i pdfs movies browsing small works lot time browser.5_10 minutes lot.you
1425 Very very very slow and get hang after every 10 mins. Worst product\n slow get hang everi 10 min worst product\n Negative 13 slow hang mins worst product
1426 After using for last 10 months . Though screen , battery and weight are ok but one star given for software issue. Ver slowand always hanging. Already checked at HP service centre but no improvement. Better buy ASUS products.\n use last 10 month though screen batteri weight ok one star given softwar issu ver slowand alway hang alreadi check hp servic centr improv better buy asu products\n Positive 40 last months screen battery weight ok star software issue ver slowand hp service centre improvement asus products
1427 Good in price but booting time is too much...not a gamer not a heavy user. just watching movies and you tube songs...still it takes a time too load a page... performance is average\n good price boot time muchnot gamer heavi user watch movi tube songsstil take time load page perform average\n Positive 33 good price booting time much gamer heavy user movies songs time page performance average
1428 In time delivery. Device completely fits description. Easy to use, lightweight , good built-in graphics and speed is also nice for an i3 processor. Battery life is excellent and better than given in description. Loved it!\n time deliveri devic complet fit descript easi use lightweight good builtin graphic speed also nice i3 processor batteri life excel better given descript love it\n Positive 36 time delivery device description easy lightweight good graphics speed nice i3 processor battery life excellent better description
1429 Best laptop for office and home use. Light weight and small size of laptop helpful to carry anywhere. Sound quality and battery life better. बिनधास्त purchase करो। Best product. Thanks Amazon and HP\n best laptop offic home use light weight small size laptop help carri anywher sound qualiti batteri life better बिनधास्त purchas करो। best product thank amazon hp\n Positive 33 best laptop office home use light weight small size laptop helpful sound quality battery life best product thanks amazon hp
1430 The worst laptop I have ever seen.. only for simple office works or saving documents and files.. can’t even play a game without hanging.. don’t get fooled by seeing price and specs.. hp is degrading its brand value with these kind of lappys..\n worst laptop ever seen simpl offic work save document file can’t even play game without hang don’t get fool see price spec hp degrad brand valu kind lappys\n Positive 43 worst laptop simple office works documents files game don t price specs hp brand value kind lappys
1431 I have purchased this product 5 months back, already replaced once due to poor performance. Even with the replaced product i am not able to open a powerpoint..you dont believe it is i3. It is totally useless now. I am trying to contact HP\n purchas product 5 month back alreadi replac due poor perform even replac product abl open powerpointy dont believ i3 total useless tri contact hp\n Negative 44 product months poor performance replaced product able powerpoint i3 useless hp
1432 The product I received was very slow. Although it has decent built, light weight, good battery life, good looks, original windows it is very slow and that's a deal breaker for me and sold the laptop 4 months into my use.\n product receiv slow although decent built light weight good batteri life good look origin window slow that deal breaker sold laptop 4 month use\n Positive 41 product slow decent light weight good battery life good looks original windows slow deal breaker laptop months use
1433 Budget laptop, average build quality, 4gb is insufficient for Win10, upgraded to 8gb, works smooth now. Light weight.good for browsing, documenting, etc. For medium to heavy usage, It's better to invest another 10k and go for i5 and 8gb configuration minimum.\n budget laptop averag build qualiti 4gb insuffici win10 upgrad 8gb work smooth light weightgood brows document etc medium heavi usag better invest anoth 10k go i5 8gb configur minimum\n Positive 41 budget laptop average build quality gb insufficient win10 gb light weight.good browsing documenting medium heavy usage better 10k i5 gb configuration minimum
1434 Bought it for office use and it's really a great product. Good sound and great battery life. Got a a great price with cashback too. Thank you Amazon for the quick delivery.\n bought offic use realli great product good sound great batteri life got great price cashback thank amazon quick delivery\n Positive 32 office use great product good sound great battery life great price cashback amazon quick delivery
1435 When you switch it on it takes 10 mins to boot up. When you open an application, it takes 15 mins to open up.....Iam fed up with the slow ness of this laptop....pls prefer Dell any time over HP. The customare care no given in the laptop does not exist....Its horrible.\n switch take 10 min boot open applic take 15 min open upiam fed slow ness laptoppl prefer dell time hp customar care given laptop existit horrible\n Negative 51 mins application mins iam slow ness laptop dell time hp customare laptop horrible
1436 The adapter of the laptop is very poor in quality. After 10days of my purchase it has started showing problem in charging, even I am unable to charge the battery....I do not know whether there is problem in battery or in the adapter... It is a simple wastage of money\n adapt laptop poor qualiti 10day purchas start show problem charg even unabl charg batteryi know whether problem batteri adapt simpl wastag money\n Negative 50 adapter laptop poor quality 10days purchase problem charging unable battery problem battery adapter simple wastage money
1437 good product I have purchased this product only 24000 and this is very good for my use and my office work is really good work sound is ok and battery life is also ok but I think is is good\n good product purchas product 24000 good use offic work realli good work sound ok batteri life also ok think good\n Positive 40 good product product good use office work good work sound ok battery life good
1438 Excellent sound & equalizer. Surround sound etc. makes it even better. Battery is also very good. and weight is only 1.59kgs. which godd.. for a 14" laptop and i can shift it any where with one hand.Kudos!!\n excel sound equal surround sound etc make even better batteri also good weight 159kg godd 14 laptop shift one handkudos\n Positive 37 excellent sound equalizer sound battery good weight 1.59kgs godd laptop hand.kudos
1439 As speaker is placed at top, Sound quality is simply awesome.Matte finish makes laptop look at first classNo Lag or heating problemBattery stands upto 4-5 hrsHandy and 14 inch screen look compactThe Best lap in the market for 25K\n speaker place top sound qualiti simpli awesomematt finish make laptop look first classno lag heat problembatteri stand upto 45 hrshandi 14 inch screen look compactth best lap market 25k\n Positive 39 speaker top sound quality awesome.matte finish laptop look first classno lag heating problembattery upto hrshandy inch screen best lap market 25k
1440 Best laptop at this price. Had got one before for my wife and was happy with it. So bought another one for me. Though the price has changed now,m still happy with the deal.\n best laptop price got one wife happi bought anoth one though price chang nowm still happi deal\n Positive 34 best laptop price wife happy one price m happy deal
1441 It looks good and light weight also. Good for general office work but is not suggested for running multimedia application, it will become very low.\n look good light weight also good gener offic work suggest run multimedia applic becom low\n Positive 26 good light weight good general office work multimedia application low
1442 Screen size is slight small but performance wise it is worth the money\n screen size slight small perform wise worth money\n Positive 13 screen size slight small performance wise worth money
1443 Don't buy this product. Not worth it. Spend some more and buy a more sturdy product. Major software issues.\n dont buy product worth spend buy sturdi product major softwar issues\n Negative 19 product worth more sturdy product major software issues
1444 Sound Quality standards , battery life is good and minimum full charge and light Waight for easy use ,only issue of slow processor , in starting windows time to much .\n sound qualiti standard batteri life good minimum full charg light waight easi use issu slow processor start window time much \n Positive 32 sound quality standards battery life good minimum full charge light waight easy use only issue slow processor windows time much
1445 Good product. Nice to handle, low weight, graphic quality is good.OS is updated and is very good. Overall performance is excellent.\n good product nice handl low weight graphic qualiti goodo updat good overal perform excellent\n Positive 21 good product nice low weight graphic quality good overall performance excellent
1446 Poor product .. worst ever seen very very slow share wastage of my money.. even after sales service is very poor.. it is really genuine review\n poor product worst ever seen slow share wastag money even sale servic poor realli genuin review\n Negative 26 poor product worst slow share wastage money sales service poor genuine review
1447 Laptop is very very slow since i received the laptop. It feels like pentium version as even opening a folder takes ages at start. It hangs a lot. Tried every possible way to solve with HP assist but it is still quite slow. If I could return, trust me i would be more than obliged.\n laptop slow sinc receiv laptop feel like pentium version even open folder take age start hang lot tri everi possibl way solv hp assist still quit slow could return trust would obliged\n Positive 55 laptop slow laptop pentium version folder ages start lot possible way hp assist slow
1448 Slowest !!!! As slow as a tortoise!!! It takes 3 seconds to go from one tab to other tab in google chrome !!! I have uninstalled unnecessary apps too... still ... added to that there is some kind of creaking noise from the laptop while using it... !!!\n slowest slow tortois take 3 second go one tab tab googl chrome uninstal unnecessari app still ad kind creak nois laptop use \n Positive 48 slowest slow tortoise seconds tab other tab google chrome unnecessary apps kind noise laptop
1449 Delivery time is very effective..light weight and speed is more good which I think..14 inch screen is enough which shows its better look\n deliveri time effectivelight weight speed good think14 inch screen enough show better look\n Positive 23 delivery time effective light weight speed good inch screen enough better look
1450 Value for money but not very comfortable.\n valu money comfortable\n Positive 7 value money comfortable
1451 It is a very slow machine, despite having nothing but windows 10 and MS office installed on it. My older laptop with a 2 GB RAM and a whole lot of software on it was way faster. Its conked off within a year and I'm having to replace it now.\n slow machin despit noth window 10 ms offic instal older laptop 2 gb ram whole lot softwar way faster conk within year im replac now\n Neutral 50 slow machine windows ms office older laptop gb ram whole lot software year
1452 Thing light weight laptop. Overall plasticky build. Needs extra care at the monitor hinges.The ugly, oversized charger makes the entire package heavy.\n thing light weight laptop overal plasticki build need extra care monitor hingesth ugli overs charger make entir packag heavy\n Positive 22 thing light weight laptop overall plasticky build extra care monitor ugly oversized charger entire package heavy
1453 It’s an ideal laptop looking for all types of uses. Battery life is excellent. Screen quality is also very good. Smooth keyboard. Preinstalled windows. Charging takes little time.\n it’ ideal laptop look type use batteri life excel screen qualiti also good smooth keyboard preinstal window charg take littl time\n Positive 29 ideal laptop types uses battery life excellent screen quality good smooth keyboard windows little time
1454 Key pad is not working after 1month of use, and windows software is having problem while on and off ...i am writing this review after using it 10monthsIt might be used one i am not sure about its genuine\n key pad work 1month use window softwar problem write review use 10monthsit might use one sure genuine\n Negative 39 key pad use windows software problem review sure genuine
1455 The laptop takes forever to start and all applications hang without working. After purchase of this laptop the same day of delivery i had complaint to Amazon but i was forced to keep this laptop since customer service department told me nothing can be done.\n laptop take forev start applic hang without work purchas laptop day deliveri complaint amazon forc keep laptop sinc custom servic depart told noth done\n Negative 45 laptop applications purchase laptop same day delivery complaint amazon laptop customer service department
1456 Its really good Laptop at 29k, I have been using Lenovo before, their Laptops are rough and tough usable. Lets see how HP works.\n realli good laptop 29k use lenovo laptop rough tough usabl let see hp works\n Positive 25 good laptop lenovo laptops rough tough usable lets hp
1457 Worst laptop, after switch off laptop but fan is running and not stop, hang problem, log in take more time, speed is not good totally wastage money on this laptop if u buy this laptop, i recommend please not buy this product.\n worst laptop switch laptop fan run stop hang problem log take time speed good total wastag money laptop u buy laptop recommend pleas buy product\n Negative 43 worst laptop laptop fan hang problem more time speed good money laptop laptop product
1458 Product is not as per required standard. I am feeling cheated.It takes a lot of time to boot - ShutDown & Restart takes a very long time. Laptop with such a configuration should have high speed. I am really disappointed with this online Laptop purchase.\n product per requir standard feel cheatedit take lot time boot shutdown restart take long time laptop configur high speed realli disappoint onlin laptop purchase\n Negative 45 product standard lot time boot shutdown restart long time laptop configuration high speed disappointed online laptop purchase
1459 Light weight up to expectations on the dimensions of performance.A good by for the students those who move for presentations.\n light weight expect dimens performancea good student move presentations\n Positive 20 light weight expectations dimensions performance.a good students presentations
1460 key board is not working properly and the laptop was very slow in operating even though it is i3 processor with 7th generation and I had spend Rs3000/- extra to buy internal solid state drive to increase the speed of laptop\n key board work properli laptop slow oper even though i3 processor 7th gener spend rs3000 extra buy intern solid state drive increas speed laptop\n Positive 41 key board laptop slow i3 processor 7th generation extra internal solid state drive speed laptop
1461 Worst product. They cheated . It's worked only 12 days . Afterwards it's got repair frequent . They money went waste . Please don't buy and get cheated\n worst product cheat work 12 day afterward got repair frequent money went wast pleas dont buy get cheated\n Negative 28 worst product days repair frequent money waste
1462 So after using it for four month, Light weighted , processing speed is good. Display is fantastic. And absolutely you would the feel of 14 inch laptop here. Go for it without a doubt.\n use four month light weight process speed good display fantast absolut would feel 14 inch laptop go without doubt\n Positive 34 month light weighted processing speed good display fantastic feel inch laptop doubt
1463 It's is worth but if your budget is 35-38k, then go for some other laptop like lenovo. It would provide you more features and higher configurations.\n worth budget 3538k go laptop like lenovo would provid featur higher configurations\n Positive 26 worth budget 38k other laptop lenovo more features higher configurations
1464 A wonderful product is really very good this very cheap the brother give up to the mark\n wonder product realli good cheap brother give mark\n Positive 17 wonderful product good cheap brother mark
1465 System is very slow. Also Office 365 is not working whereas product is purchased with licence version.It is very difficult to reach at Customer support.Request you to contact me to discuss.\n system slow also offic 365 work wherea product purchas licenc versionit difficult reach custom supportrequest contact discuss\n Negative 31 system slow office product licence difficult customer
1466 Nice light weight laptop designed only for very basic usage, not ment for heavy tasks or multitasking. Design and lookwise good but when used its is bit lagged (slow in processing)Overall nice but slow processing laptop just for basic use.\n nice light weight laptop design basic usag ment heavi task multitask design lookwis good use bit lag slow processingoveral nice slow process laptop basic use\n Positive 40 nice light weight laptop basic usage ment heavy tasks multitasking design lookwise good bit lagged slow processing)overall nice slow processing laptop basic use
1467 Avoid windows 10 laptop. Very slow operating system for laptops below 40k.\n avoid window 10 laptop slow oper system laptop 40k\n Negative 12 windows laptop slow operating system laptops 40k
1468 Hi,I have been using this model after I bought it in April but all the programming are slowing down on the laptop. can I add 256 GB SSD into it to make faster? Please adviseThanks,Shweta\n hii use model bought april program slow laptop add 256 gb ssd make faster pleas advisethanksshweta\n Neutral 35 model april programming laptop gb ssd advisethanks shweta
1469 very baddisplay is not working.I gave my laptop to Trivadrum HP care center for servicing on 21.09.2019 and still i did not get.today 1 month over.\n baddisplay workingi gave laptop trivadrum hp care center servic 21092019 still gettoday 1 month over\n Positive 26 baddisplay laptop hp care center 21.09.2019 get.today month
1470 Product I liked because of its light wait, smaller size besides it's working. Only problem I experienced is low battery life and heat generated while working which makes it uncomfortable to hold in lap.\n product like light wait smaller size besid work problem experienc low batteri life heat gener work make uncomfort hold lap\n Negative 34 product light smaller size problem low battery life heat uncomfortable lap
1471 Very handy for dail usage, laptop performance is very decent.\n handi dail usag laptop perform decent\n Neutral 10 handy dail usage laptop performance decent
1472 Window 10 is very slow taking abnormal start time office built in not accepted by Microsoft as original please help.\n window 10 slow take abnorm start time offic built accept microsoft origin pleas help\n Positive 20 window slow abnormal start time office microsoft original
1473 Worst product I had till date. Very very slow. Hangs in opening any website. Complete disappointed from HP and somewhat with amazon for keeping such product in their inventory.\n worst product till date slow hang open websit complet disappoint hp somewhat amazon keep product inventory\n Negative 29 worst product date slow website disappointed hp amazon such product inventory
1474 Got it at best deal, fantastic machine for light users, original windows, light weight. Bit slow but ok with it compare to pricing\n got best deal fantast machin light user origin window light weight bit slow ok compar pricing\n Positive 23 best deal fantastic machine light users original windows light weight bit slow pricing
1475 Very bad performance\n bad performance\n Negative 3 bad performance
1476 Good product but very slow. It's good for normal use , too much of load on 4gb ram. Needs better processor\n good product slow good normal use much load 4gb ram need better processor\n Positive 21 good product slow good normal use much load gb ram better processor
1477 NICE PURCHASE AT NOMINAL PRICE,VALUE FOR MONEY FOR HOME AMD OFFICIAL USE.APPROPRIATE BATTERY LIFE AND EASY CARRY WEIGHT LAPTOP.\n nice purchas nomin pricevalu money home amd offici useappropri batteri life easi carri weight laptop\n Positive 19 nice purchase nominal price value money home amd official use.appropriate battery life easy carry weight laptop
1478 Overall the laptop is good except the speed or operating performance. It hangs so many times even only one application is open. So many times have to wait for few minutes for laptop to react.\n overal laptop good except speed oper perform hang mani time even one applic open mani time wait minut laptop react\n Positive 35 laptop good speed operating performance many times application open many times few minutes laptop
1479 I bought it October 10 2018 now its stops working within a year.I don't know how solve this problem. But my warranty status is still active. But having 5days only. Please help someone.\n bought octob 10 2018 stop work within yeari dont know solv problem warranti statu still activ 5day pleas help someone\n Positive 33 october stops year.i solve problem warranty status active
1480 Great product and a wonderful price. You get what you see. Light weight indeed.\n great product wonder price get see light weight indeed\n Positive 14 great product wonderful price light weight
1481 I am highly disappointed with it. Sometimes it doesn't start. Screen gets blue or red. It seems like a duplicate or fake product.I'm thinking about filling suit against the seller.\n highli disappoint sometim doesnt start screen get blue red seem like duplic fake productim think fill suit seller\n Negative 31 disappointed screen blue red duplicate fake product.i'm suit seller
1482 i am getting a message niw that my windows is going to expire. wth is this.. i paid to you wnd it was mentioned that it has windows 10 lifetime\n get messag niw window go expir wth paid wnd mention window 10 lifetime\n Negative 30 message niw windows wth wnd windows lifetime
1483 Nice and light laptop. The build could have been robust. Though overall and excellent machine for light usage\n nice light laptop build could robust though overal excel machin light usage\n Positive 18 nice light laptop build robust overall excellent machine light usage
1484 Very good.light weight\n goodlight weight\n Neutral 3 good.light weight
1485 This was a steal deal as it was 5k cheaper than what this model was priced in an hp world store. Rest every thing was as mentioned in the configurations\n steal deal 5k cheaper model price hp world store rest everi thing mention configurations\n Negative 30 steal deal cheaper model hp world store thing configurations
1486 Value for money. Best thing about it is its light weight yet comfortable screen size.\n valu money best thing light weight yet comfort screen size\n Positive 15 value money best thing light weight comfortable screen size
1487 Ok good for the price\n ok good price\n Positive 5 good price
1488 Laptop is good for use but its not very fast. its takes time to boot up and got hang some time, even when i have not uploaded heavy software till now.battery life is very good. but its not fast .\n laptop good use fast take time boot got hang time even upload heavi softwar till nowbatteri life good fast \n Positive 40 laptop good use time time heavy software now.battery life good fast
1489 Computer is good. But hangs sometimes and speed slows down ..\n comput good hang sometim speed slow \n Positive 11 computer good speed
1490 Dont buy it is very slow process...Starting mai hi blank dikhata hai i purchased and after one week iska natk chalu eda banae ka dhanda hai ...bad bad bad\n dont buy slow processstart mai hi blank dikhata hai purchas one week iska natk chalu eda bana ka dhanda hai bad bad bad\n Negative 29 slow process mai blank dikhata hai week iska natk chalu eda banae ka dhanda hai bad bad bad
1491 It's not working properly. Started once and then operating system is not loading\n work properli start oper system loading\n Neutral 13 system
1492 Very slow....Unhappy and regretting the buying\n slowunhappi regret buying\n Negative 6 slow unhappy buying
1493 Good laptop by hp in this prices range I got it in 24k.but I feel material quality could be little Improved with some shoot up in prices.but overall it's good\n good laptop hp price rang got 24kbut feel materi qualiti could littl improv shoot pricesbut overal good\n Positive 30 good laptop hp prices material quality shoot overall good
1494 Good performance. Light weight. Compact. Battery backup almost 4 hours. Sound quality is adequate. Very good choice for day today activity. Only drawback is sometime it lags for no reason. Otherwise it's awesome...\n good perform light weight compact batteri backup almost 4 hour sound qualiti adequ good choic day today activ drawback sometim lag reason otherwis awesome\n Positive 34 good performance light weight compact battery backup hours sound quality adequate good choice day today activity only drawback reason awesome
1495 after using more than two months i am writing this review its working is so slow some time it take 30 minutes to start.not supporting to latest technology or software and customer service is worst\n use two month write review work slow time take 30 minut startnot support latest technolog softwar custom servic worst\n Negative 35 more months review working slow time minutes latest technology software customer service worst
1496 This laptop came with Windows 10 preinstalled, not sure if it's a problem of processor or RAM, but my laptop runs very slow... it takes a min to open a blank excel file.\n laptop came window 10 preinstal sure problem processor ram laptop run slow take min open blank excel file\n Positive 33 laptop windows sure problem processor ram laptop min blank excel file
1497 Medium speed I buy rs 22000. After one year now very slow\n medium speed buy rs 22000 one year slow\n Neutral 12 medium speed rs year slow
1498 Value for money.. Bought at stealing price !\n valu money bought steal price \n Negative 8 value money price
1499 Facing too much performance issue.. taking alot time to reboot. I didn't try to open any excel files or docs , but usual performance seems like a disaster\n face much perform issu take alot time reboot didnt tri open excel file doc usual perform seem like disaster\n Negative 28 much performance issue alot time excel files docs usual performance disaster
1500 Good Laptop by HP. I have been using this since 3 months now. No problems and easy to use.\n good laptop hp use sinc 3 month problem easi use\n Positive 19 good laptop hp months problems easy
1501 Very bad and very slow pc not even able to download its own hp support assiatant screen becomes black with every boot up never recommend to anybody dont buy this crap.\n bad slow pc even abl download hp support assiat screen becom black everi boot never recommend anybodi dont buy crap\n Negative 31 bad slow pc able own hp support assiatant screen black boot crap
1502 1-Processing time is too long.2-frequently hangs.3-camera is not hd web cam, it's image is so poor that I have ever seen.4-ever start ever not.\n 1process time long2frequ hangs3camera hd web cam imag poor ever seen4ev start ever not\n Negative 24 time hangs.3-camera hd web cam image poor
1503 Too slow to perform. Something you would never expect from brand like HP. So far I am not happy with this product.\n slow perform someth would never expect brand like hp far happi product\n Negative 22 slow brand hp happy product
1504 I bought when the price was 31k, so it doesn't worth the price, better wait for the discount around 25k will be good\n bought price 31k doesnt worth price better wait discount around 25k good\n Neutral 23 price 31k price better discount good
1505 Very bad. Very slow. Keeps on hanging and now no option to exchange or return\n bad slow keep hang option exchang return\n Negative 15 bad slow hanging option
1506 Its value for money..\n valu money\n Neutral 4 value money
1507 Good product so far.\n good product far\n Positive 4 good product
1508 It takes a lot of time when you turn it on.it's processing speed is too slow. When I turn it on every time there appears lines on screen.\n take lot time turn onit process speed slow turn everi time appear line screen\n Neutral 28 lot time on.it processing speed slow time lines screen
1509 Only i am facing hanging problem. So need to improve.\n face hang problem need improve\n Positive 10 problem
1510 Nice product, not for heavy programming or so, but for videos, movies, or programming with lightweight editors works well.\n nice product heavi program video movi program lightweight editor work well\n Positive 19 nice product heavy programming videos movies lightweight editors
1511 The laptop is slow. you cant multi task things. Laptop is for a basic use like watching movies and stuff. Cant install many programs. It will slow down.\n laptop slow cant multi task thing laptop basic use like watch movi stuff cant instal mani program slow down\n Positive 28 laptop slow task things laptop basic use movies stuff many programs
1512 Product warranty should start from the date of purchase, but the warranty of laptop I received started 2 months earlier.Replacement laptop had the same issue.\n product warranti start date purchas warranti laptop receiv start 2 month earlierreplac laptop issue\n Neutral 25 product warranty date purchase warranty laptop months earlier.replacement laptop same issue
1513 Had issues in the windows in the first week. Had to reinstall. Running fine now.\n issu window first week reinstal run fine now\n Positive 15 issues windows first week
1514 Missing back-lit keyboard and full HD display. Mouse buttons are little hard..\n miss backlit keyboard full hd display mous button littl hard\n Negative 12 back lit keyboard full hd display mouse buttons hard
1515 Very poor response of machine..hard disk gone in a year time\n poor respons machinehard disk gone year time\n Negative 11 poor response machine hard disk year time
1516 Vear poor battery life and screen quality\n vear poor batteri life screen quality\n Negative 7 vear poor battery life screen quality
1517 So stylish look wise.. sound is good. And processor is fast.. it working awesome\n stylish look wise sound good processor fast work awesome\n Positive 14 stylish look wise sound good processor fast
1518 Worst Laptop I’ve ever used in last 20yrs\n worst laptop i’v ever use last 20yrs\n Negative 8 worst laptop ve last 20yrs
1519 this item is totally pathetic , yesterday i was collected this product and as per expectation quality is not good i want to return this product.\n item total pathet yesterday collect product per expect qualiti good want return product\n Positive 26 item pathetic yesterday product expectation quality good product
1520 I donot know why it is slow.\n donot know slow\n Neutral 7 slow
1521 The Windows software got corrupted in a month. Chasing HP Service center is a big project by itself.\n window softwar got corrupt month chase hp servic center big project itself\n Neutral 18 windows software month hp service center big project
1522 Worst laptop I've ever used.its slower than tortoise.also have issue in shutting down process.\n worst laptop ive ever usedit slower tortoisealso issu shut process\n Negative 14 worst laptop slower tortoise.also issue process
1523 Laptop tend to hang a lot. Don't know that why i3 is unable to handle win 10.They should just give win7 which is much smoother\n laptop tend hang lot dont know i3 unabl handl win 10they give win7 much smoother\n Positive 25 laptop lot i3 unable win win7 smoother
1524 Very slugish laptop, windows 10 is not compatible with 4 gb ram.Better to buy it with 8 gb ram\n slugish laptop window 10 compat 4 gb rambett buy 8 gb ram\n Neutral 19 slugish laptop windows compatible gb ram.better gb ram
1525 Very slow, hangs, total disappointment. Return not possible, only replacement. So be careful purchasing this one.\n slow hang total disappoint return possibl replac care purchas one\n Positive 16 slow hangs total disappointment possible replacement careful purchasing one
1526 lightweight stylish laptop.\n lightweight stylish laptop\n Neutral 3 lightweight stylish laptop
1527 Excellent product value for money\n excel product valu money\n Positive 5 excellent product value money
1528 Hi. This laptop design, sound is very good and light weight. But the performance is too slow...\n hi laptop design sound good light weight perform slow\n Positive 17 laptop design sound good light weight performance slow
1529 Im so happy with this product...\n im happi product\n Neutral 6 happy product
1530 Please don’t buy this computer, I have loaded this computer with the latest version of windows & apparently the computer hangs because of this.Am totally disappointed\n pleas don’t buy comput load comput latest version window appar comput hang thisam total disappointed\n Negative 26 don t computer computer latest version windows computer this.am disappointed
1531 Within few weeks of use the laptop had been crashing and suddenly shutting down. Since it’s outside return window it can’t be returned. Really disappointed with it.\n within week use laptop crash suddenli shut sinc it’ outsid return window can’t return realli disappoint it\n Negative 27 few weeks use laptop return window disappointed
1532 Beteer\n beteer\n Neutral 1 beteer
1533 best quality in this range. very light... but we have to increase ram to speed up thisss\n best qualiti rang light increas ram speed thisss\n Positive 19 best quality range light thisss
1534 Not so good. Build quality is OK but processing speed is very slow.with this price range it's a big compromise.\n good build qualiti ok process speed slowwith price rang big compromise\n Positive 20 good quality ok processing speed slow.with price range big compromise
1535 its an i3 process even then ,it is very slow.my work is related to the web only,it take minutes to load a simple web window\n i3 process even slowmi work relat web onlyit take minut load simpl web window\n Neutral 25 i3 process slow.my work web minutes simple web window
1536 Basic feature laptop\n basic featur laptop\n Neutral 3 basic feature laptop
1537 For 23k this is a good laptop... Bought it during big billion days offer on oct 18. Works fine\n 23k good laptop bought big billion day offer oct 18 work fine\n Positive 19 23k good laptop big days oct
1538 Except battery the system is okay\n except batteri system okay\n Positive 6 battery system okay
1539 not satisfied.,.,.\n satisfied\n Positive 2 satisfied
1540 Worth for money\n worth money\n Positive 3 worth money
1541 Bad performance,hangs almost all the time\n bad performancehang almost time\n Negative 6 bad performance time
1542 Speed is average. Touch pad is not sensitive\n speed averag touch pad sensitive\n Neutral 8 speed average touch pad sensitive
1543 Light weight, good looking with original windows 10, but laptop is running little slow.\n light weight good look origin window 10 laptop run littl slow\n Positive 14 light weight good original windows laptop little slow
1544 Processor is too slow\n processor slow\n Neutral 4 processor slow
1545 this laptop is quite slow …..doesn't look like i3 7th gen processor ….how to solve this problm\n laptop quit slow …doesnt look like i3 7th gen processor …how solv problm\n Positive 17 laptop slow i3 7th gen processor problm
1546 Laptop is fine, but Microsoft office could have been given along with the package for additional amount\n laptop fine microsoft offic could given along packag addit amount\n Positive 17 laptop fine microsoft office package additional amount
1547 Good product and affordable price.Something not bad\n good product afford pricesometh bad\n Negative 7 good product affordable price.something bad
1548 One of the worst laptop I ever buy... Performance vry slow... don't wasye ur money....I wish I could return it back...\n one worst laptop ever buy perform vri slow dont wasy ur moneyi wish could return back\n Negative 21 worst laptop performance vry ur money
1549 Overall 1/5 rating. I am working with Amazon to return this PC (not easy to return....pathetic process...they send some1 to check if you are speaking truth or false) because wifi adapter (Realtek RTL 8723DE802.11 B/G/N PCIe Adapter doesn't work on 5GHz Airtel/ Reliance wifi. So if internet goes (obviously its going to happen) faster, laptop is not going to work. Unfortunately this information is hidden and not mentioned anywhere in technical specs. PLEASE DONT BUY THIS LAPTOP. Other cons: Big, heavy, no- touch screen, no SSD, normal HDD.\n overal 15 rate work amazon return pc easi returnpathet processthey send some1 check speak truth fals wifi adapt realtek rtl 8723de80211 bgn pcie adapt doesnt work 5ghz airtel relianc wifi internet goe obvious go happen faster laptop go work unfortun inform hidden mention anywher technic spec pleas dont buy laptop con big heavi touch screen ssd normal hdd\n Positive 88 rating amazon pc easy pathetic process some1 truth false adapter realtek b g n pcie adapter airtel/ reliance internet laptop information technical specs laptop other cons big heavy no- touch screen ssd normal hdd
1550 Decent laptop but the wireless adaptor supports only b/g/n band only. So can connect only to 2.4GHz signal and get max 40MBPs speed. Even if you have a high speed / 100 MBPS connection, you will not be able to connect.\n decent laptop wireless adaptor support bgn band connect 24ghz signal get max 40mbp speed even high speed 100 mbp connect abl connect\n Positive 41 decent laptop wireless adaptor b g n band signal max speed high speed mbps connection able
1551 I feel worth buying such a nice HP laptop in that budget.Everything was working fine.Sound quality was good and battery charged with 99% was lasting for 6hrs.I feel I made a good decision by spending money on a good product.\n feel worth buy nice hp laptop budgeteveryth work finesound qualiti good batteri charg 99 last 6hrsi feel made good decis spend money good product\n Positive 40 worth nice hp laptop fine.sound quality good battery % 6hrs.i feel good decision money good product
1552 Laptop is good from every angle. Price is reasonable. However, I had a bad experience with amazon. My laptop warranty started 6 months prior to my purchase date. I wrote to amazon for 9 times. Every time in their answer, amazon gave me promise to sort it out & mentioned that my problem is genuine. After 15 days of my 1st mail they formed committee to sort out my problem. After 1 month, amazon committee passed resolution that I should contact HP company for warranty & they have nothing to do with my problem. I wrote them, I purchased laptop from amazon , so amazon should do correspondence with HP. But amazon did not agree. Ultimately I started correspondence with hp. HP was very practical & resolved my problem with single mail.\n laptop good everi angl price reason howev bad experi amazon laptop warranti start 6 month prior purchas date wrote amazon 9 time everi time answer amazon gave promis sort mention problem genuin 15 day 1st mail form committe sort problem 1 month amazon committe pass resolut contact hp compani warranti noth problem wrote purchas laptop amazon amazon correspond hp amazon agre ultim start correspond hp hp practic resolv problem singl mail\n Negative 137 laptop good angle price reasonable bad experience amazon laptop warranty months purchase date amazon times time answer amazon promise problem genuine days 1st mail committee problem month amazon committee resolution hp company warranty problem laptop amazon amazon correspondence hp amazon correspondence hp hp practical problem single mail
1553 This laptop full series has problem. While creating new folder system it hangs. I returned this laptop twice but still same problem was available.so finally I returned and decided to buy different lappy. It's speed is not as par with specifications. Boot time is more.\n laptop full seri problem creat new folder system hang return laptop twice still problem availableso final return decid buy differ lappi speed par specif boot time more\n Negative 46 laptop full series problem new folder system laptop same problem different lappy speed par specifications boot time more
1554 It is a pretty pathetic piece of hardware I have ever used,1. Very poor performance even with 8GB RAM, the laptop takes ages to login and display your desktop. Often, simple programs like Chrome becomes unresponsive. One has to restart the program.2. Keyboard and mouse pad placement are not at all ergonomic and is very uncomfortable to use. The keys are hard to press and not at all intuitive due to placement.3. No back-lit keyboard, which are now standard in laptops in this price range4. The McAfee virus expired within few days even when it says it is 3 months free5. I purchased additional warranty, but HP just refused it without any reason\n pretti pathet piec hardwar ever used1 poor perform even 8gb ram laptop take age login display desktop often simpl program like chrome becom unrespons one restart program2 keyboard mous pad placement ergonom uncomfort use key hard press intuit due placement3 backlit keyboard standard laptop price range4 mcafe viru expir within day even say 3 month free5 purchas addit warranti hp refus without reason\n Negative 113 pathetic piece hardware poor performance gb ram laptop ages desktop simple programs chrome unresponsive program.2 keyboard mouse pad placement ergonomic uncomfortable keys hard intuitive placement.3 lit keyboard standard laptops price range4 mcafee virus few days months free5 additional warranty hp reason
1555 Battery is draining very quickly even at hybernate mode.. processing is too slow..cannot run even 2 applications together smoothly.. looks like old laptop I bought with a new body only.. pathetic experience..\n batteri drain quickli even hybern mode process slowcannot run even 2 applic togeth smoothli look like old laptop bought new bodi pathet experience\n Positive 32 battery hybernate mode processing slow applications old laptop new body pathetic experience
1556 Hopeless service by Amazon. They delivered laptop today. It is not loaded. I am not able to start it immediately. After following the voice commands I reached to a stage where it is asking for phone no to connect it to laptop. Even after putting this info not able to move ahead. This is completely disappointing. Now customer service and tech support team of Amazon is asking me to contact HP support team to get help. Pathetic service support.\n hopeless servic amazon deliv laptop today load abl start immedi follow voic command reach stage ask phone connect laptop even put info abl move ahead complet disappoint custom servic tech support team amazon ask contact hp support team get help pathet servic support\n Positive 79 hopeless service amazon laptop today able voice commands stage phone info able disappointing customer service tech support team amazon hp team help pathetic service support
1557 When i checked in HP support assistant it shows only 7 months warranty remaining,this is bad impact to me\n check hp support assist show 7 month warranti remainingthi bad impact me\n Negative 19 hp assistant months warranty bad impact
1558 If u want a laptop within 45000 then this is the best one. Works very smoothly and it can support 2160p. Which is Awsm..you get 30 days free mcafee trial. Battery life is excellent. But the front facing cam is not so good. You get office 2016 installed.. MUST BUY THIS PRODUCT......\n u want laptop within 45000 best one work smoothli support 2160p awsmyou get 30 day free mcafe trial batteri life excel front face cam good get offic 2016 instal must buy product\n Positive 52 laptop best awsm days free mcafee trial battery life excellent front cam good office product
1559 Very bad producr 😠😠😠😠😠😠😠😠😠😠😠Please don't buy it guys\n bad producr 😠😠😠😠😠😠😠😠😠😠😠pleas dont buy guys\n Negative 8 bad producr guys
1560 I had purchased the product because it is having WIN10 & MS Office but it is asking for key, which is not provided with the product... I gave multiple calls to HP call center but no solution is received as of now... Needed assistance to install MS Office... Thanks for the online support provided to install office...Glad to know that online support is available for 24×7...\n purchas product win10 ms offic ask key provid product gave multipl call hp call center solut receiv need assist instal ms offic thank onlin support provid instal officeglad know onlin support avail 24×7\n Positive 66 product win10 ms office key product multiple calls hp center solution assistance ms office thanks online support office glad online support available
1561 Screen display not working. Defective piece delivered. Have informed customer care. Very sad experience.\n screen display work defect piec deliv inform custom care sad experience\n Negative 14 screen display defective piece customer care sad experience
1562 I bought this Laptop on 29th Sep 2019 frm Amazon.inGot it delivered on 1st Oct 2019.When i started using my laptop and checked my laptop warranty status it is showing me that its warranty will expire on 15th Dec 2019 as the device was activated on 16th Dec 2018.Please help me with the warranty issue.\n bought laptop 29th sep 2019 frm amazoningot deliv 1st oct 2019when start use laptop check laptop warranti statu show warranti expir 15th dec 2019 devic activ 16th dec 2018pleas help warranti issue\n Positive 55 laptop 29th sep frm 1st oct 2019.when laptop laptop warranty status warranty 15th dec device 16th dec 2018.please warranty issue
1563 I bought this laptop for my wife. We are a great fan of HP. Her last HP laptop lasted for almost 8 years. It's perfect for her day to day Business needs. She is very happy with this one. Value for money.\n bought laptop wife great fan hp last hp laptop last almost 8 year perfect day day busi need happi one valu money\n Positive 42 laptop wife great fan hp last hp laptop years perfect day day business needs happy one value money
1564 Product is good . Wanted to go with the lower configuration which comes around 33k. But based on my past experience windows 10 needs a better configuration like i5 , gen7 n beyond and high performing processor. It has everything you will definately like its performace. It performa with no lags.\n product good want go lower configur come around 33k base past experi window 10 need better configur like i5 gen7 n beyond high perform processor everyth defin like performac performa lags\n Positive 51 product good lower configuration 33k past experience windows needs better configuration i5 gen7 high processor performace lags
1565 Read the review if you are planning to buy this laptop.Pro's- Ships with Windows and MS office- Battery life is around 3-4 hours, which i think is just ok.- keyboard is very responsiveCon's- There are no LED lights in the laptop e.g. charging light- This laptop is very heavy, but that is accepted when i bought a 15" laptop- for Core i5 and 8 gb ram, i feel the performance is slow- The screen color accuracy is faded.- Sound quality is below average- Mouse keys are very hard to pressI have a weird issue for which i am trying to get in HP support since last 2 days, but not able to get in touch with them..If you are looking for a laptop in the range of 40-45k, look for another brand laptop\n read review plan buy laptoppro ship window ms offic batteri life around 34 hour think ok keyboard responsivecon led light laptop eg charg light laptop heavi accept bought 15 laptop core i5 8 gb ram feel perform slow screen color accuraci fade sound qualiti averag mous key hard pressi weird issu tri get hp support sinc last 2 day abl get touch themif look laptop rang 4045k look anoth brand laptop\n Positive 133 review laptop.pro's- ships windows ms office- battery life hours ok.- keyboard responsivecon's- lights laptop light- laptop heavy laptop- core i5 gb ram performance slow- screen color accuracy sound quality mouse keys hard pressi weird issue hp support last days able touch laptop range 45k brand laptop
1566 What else! It's amazing at this price. Many optimisation's have been done especially to the vent region, display and keypad non-contacting surfaces, light weight, on board speakers. Really good work from previous model con's. Only thing I felt is having a variety of colours for this model. Overall it's amazing.\n els amaz price mani optimis done especi vent region display keypad noncontact surfac light weight board speaker realli good work previou model con thing felt varieti colour model overal amazing\n Positive 51 amazing price many optimisation vent region display keypad non - contacting surfaces light weight board speakers good work previous model con thing variety colours model amazing
1567 Best in-class Performance, Features and Value for Money. Battery Life upto the mark & Display,Audio quality is great. Cream on the Cake is Microsoft Windows 10 Lifetime Validity and Microsoft Office 16 Lifetime Validity.\n best inclass perform featur valu money batteri life upto mark displayaudio qualiti great cream cake microsoft window 10 lifetim valid microsoft offic 16 lifetim validity\n Positive 34 best class performance features value money battery life upto mark display audio quality great cream cake microsoft windows lifetime validity microsoft office lifetime validity
1568 I purchased this bad product on 23 September 2019, spent my hard case earn money. BUT JUST AFFAR 40 DAYS THIS LAPTOP is not working any more. NUMBER OF TIMES I DID CONTACTED TO SERVICE CENTER. BUT NO REPLY NOR they Do not want to replace this too. SO FINALLY I LOST MY 41990/- hard earn money On this Laptop. Keyboard ,Mounse pad nothing working at all.Please do not buy this.Thanks\n purchas bad product 23 septemb 2019 spent hard case earn money affar 40 day laptop work number time contact servic center repli want replac final lost 41990 hard earn money laptop keyboard mouns pad noth work allpleas buy thisthanks\n Negative 71 bad product september hard case money days laptop more number times service center reply money laptop keyboard mounse pad all.please this.thanks
1569 review after 6 monthsStrongly not recommended guys waste of moneyVery Cheap build qualityMy display got damaged FOR NO REASON AND HP CUSTOMER SUPPORT IS TAKING TOO LONG TO RESPOND AND EVEN PHYSICAL CHECK UP.No C type USB, Non removable batteryAs i got intel i5 processor, so satisfactory performance.I wish i could give Zero stars to HP & its Service VERY DISAPPOINTING\n review 6 monthsstrongli recommend guy wast moneyveri cheap build qualitymi display got damag reason hp custom support take long respond even physic check upno c type usb non remov batterya got intel i5 processor satisfactori performancei wish could give zero star hp servic disappointing\n Positive 61 review guys waste moneyvery cheap build qualitymy display reason hp customer support physical check up.no c type usb non removable intel i5 processor satisfactory performance.i wish stars hp service disappointing
1570 Please guys don't buy this laptop because I have purchased this laptop after 1.5month I faced battery problem and their support has also no idea about what is the problem in battery. I have faced issue like not charging the battery for long time,ac adapter is linked with notebook but still it shows you plugged in but not charging and I have also contact to the hp support centre,they told me like that update bios and after updating all the things what they service centre told me and again the battery not working properly,its showing plugged in but not charging...\n pleas guy dont buy laptop purchas laptop 15month face batteri problem support also idea problem batteri face issu like charg batteri long timeac adapt link notebook still show plug charg also contact hp support centrethey told like updat bio updat thing servic centr told batteri work properlyit show plug charging\n Positive 100 guys laptop laptop battery problem support idea problem battery issue battery long time adapter notebook plugged contact hp support centre update bios things centre battery showing
1571 Best product from this price. i got it only for 37117\n best product price got 37117\n Positive 11 best product price
1572 Poor battery life and performanceThe battery is draining too fast, 1% every minuteEven after having i5 processor and 8GB ram this laptop is as slow as a tortoiseIt feels like Amazon sold me 2nd hand productI'm regreting for my decisionDidn't expect such kind of service from a well-reputed company like Amazon\n poor batteri life performanceth batteri drain fast 1 everi minuteeven i5 processor 8gb ram laptop slow tortoiseit feel like amazon sold 2nd hand productim regret decisiondidnt expect kind servic wellreput compani like amazon\n Positive 51 poor battery life performancethe battery % minuteeven i5 processor gb ram laptop slow tortoiseit amazon 2nd hand producti'm decisiondidn't such kind service company amazon
1573 Got it on time. Packed well and it was just switch on and complete a small setup which anyone with basic PC knowledge can do. Activated the office package online. I changed the antivirus to Norton which I've using for years.Overall recommended for a moderate user.\n got time pack well switch complet small setup anyon basic pc knowledg activ offic packag onlin chang antiviru norton ive use yearsoveral recommend moder user\n Positive 49 time small setup basic pc knowledge office package online antivirus norton years.overall moderate user
1574 The product is nice, light weighted, have a nice battery life. But it doesn't have the USB 2.0 and 3.0 PORTS as it says in the description. It also doesn't have a backlit keyboard which can be a problem.Other than all that, it works amazingly and has very attractive specs\n product nice light weight nice batteri life doesnt usb 20 30 port say descript also doesnt backlit keyboard problemoth work amazingli attract specs\n Positive 50 product nice light weighted nice battery life usb ports description backlit keyboard problem.other attractive specs
1575 -Wi-fi speed limitations as mentioned by other users, which I somehow failed to notice. I suspect Amazon hides them before you make a purchase.-has MS office trial version only.-Keeps hanging, and its just the second day after unpack.-You delete an item/copy, it wont show untill you hit refresh.-USB ports and audio jack are tight like the ones in duplicate products.-Touchpad clicks so tight, they provide good exercise for fingers.-Sometimes you keep clicking, it wont do anything.-Sound quality is good.-Display is so-so.-Aesthetically: disappointing.\n wifi speed limit mention user somehow fail notic suspect amazon hide make purchaseha ms offic trial version onlykeep hang second day unpacky delet itemcopi wont show until hit refreshusb port audio jack tight like one duplic productstouchpad click tight provid good exercis fingerssometim keep click wont anythingsound qualiti gooddisplay sosoaesthet disappointing\n Negative 82 fi speed limitations other users amazon purchase.-has ms office trial version only.-keeps second day unpack.-you item copy untill refresh.-usb ports audio jack tight ones duplicate products.-touchpad clicks good exercise fingers.-sometimes anything.-sound quality good.-display disappointing
1576 Good performance - battery life is not more than 4 hours when working. Lightweight so easy to move with. Definitely value for money. Windows 10 and Office Student version also free with this product.\n good perform batteri life 4 hour work lightweight easi move definit valu money window 10 offic student version also free product\n Positive 35 good performance battery life more hours lightweight easy money windows office student version free product
1577 Overall nice Laptop with good battery backup, sleek and compact. Performance wise it's good. Happy with the purchase....\n overal nice laptop good batteri backup sleek compact perform wise good happi purchase\n Positive 19 overall nice laptop good battery backup sleek compact performance wise good happy purchase
1578 Buy it with the M.2 SSD of 240 GB. Worth the buy. Makes the laptop super fast on startup and shutdown. Also makes the applications start up real fast.Good value for money.\n buy m2 ssd 240 gb worth buy make laptop super fast startup shutdown also make applic start real fastgood valu money\n Positive 32 ssd gb worth buy laptop startup shutdown applications real fast.good value money
1579 It is the worst product and very slow in starting. Password recovery is also challenging job. I am having worst experience with this product and need immediate replacement.\n worst product slow start password recoveri also challeng job worst experi product need immedi replacement\n Negative 28 worst product slow password recovery job worst experience product immediate replacement
1580 There is no need to review the HP product as we all know they are of great quality. This Laptop is no exception. But I just want to mention one thing here that this laptop supports only 2.4GHz band WiFi. Most of the people would not get affected with this but yes This Laptop Does NOT Support the 5GHz band. Everything else is perfectly fine.\n need review hp product know great qualiti laptop except want mention one thing laptop support 24ghz band wifi peopl would get affect ye laptop support 5ghz band everyth els perfectli fine\n Positive 65 need hp product great quality laptop exception thing laptop band wifi most people laptop band fine
1581 NOT GOOD PRODUCT HANGS A LOT AND WITHIN 15 DAYS SOUND IS GONE\n good product hang lot within 15 day sound gone\n Positive 13 good product lot days sound
1582 Initially the battery was drinking very quickly and I called the service engineer, he offered me to change the battery. After a windows update the battery backup was awesome and I am finally happy with my purchase. It's performance is nice\n initi batteri drink quickli call servic engin offer chang batteri window updat batteri backup awesom final happi purchas perform nice\n Positive 41 battery service engineer battery windows battery backup awesome happy purchase performance nice
1583 It is a good product from HP, however boot time has significantly gone up after Windows 10 was upgraded to 1903. Ran HP utilities to check the issue, however it did not discover anything wrong. I have Lenovo of same configuration. Now I have observed that Lenovo is much faster than HP\n good product hp howev boot time significantli gone window 10 upgrad 1903 ran hp util check issu howev discov anyth wrong lenovo configur observ lenovo much faster hp\n Negative 52 good product hp boot time windows hp utilities issue wrong lenovo same configuration lenovo faster hp
1584 Problem reported immediately on receiving the system on 19-10-19. Technical inspection done on 22nd. He recommended replacement. Amazon was contacted on 24-10-19 and they too promised replacement. Today is 29-10-19. Nothing happened so far. System has been lying idle from 19-10-19.\n problem report immedi receiv system 191019 technic inspect done 22nd recommend replac amazon contact 241019 promis replac today 291019 noth happen far system lie idl 191019\n Positive 42 problem system technical inspection 22nd replacement amazon replacement today system idle
1585 Overall value for money in this price range..Built quality is also good..Includes Windows 10 and MS office student version lifetime..System speed is good as of now with no heating issues during gaming (Asphalt 9)\n overal valu money price rangebuilt qualiti also goodinclud window 10 ms offic student version lifetimesystem speed good heat issu game asphalt 9\n Positive 34 overall value money price range quality good windows ms office student version lifetime system speed good heating issues asphalt
1586 Good configuration with preloaded windows 10 & MS Office but not sure about validity of ms office i.e. lifetime or for one year only\n good configur preload window 10 ms offic sure valid ms offic ie lifetim one year only\n Positive 25 good configuration windows ms office sure validity ms office lifetime year
1587 It was a good purchase and very speedy delivery in very good codition\n good purchas speedi deliveri good codition\n Positive 13 good purchase speedy delivery good codition
1588 Experienced a very poor service from Amazon. The date of purchase is updated as the date of manufacturing in HP system which affects the duration of warranty. I got 10 months less waranty than the expected one. On contacting there is no support from either end i.e. from HP as well as Amazon in updation of their record even after providing necessary documents/evidence.\n experienc poor servic amazon date purchas updat date manufactur hp system affect durat warranti got 10 month less waranti expect one contact support either end ie hp well amazon updat record even provid necessari documentsevidence\n Positive 63 poor service amazon date purchase date hp system duration warranty months less waranty one support end hp amazon updation record necessary documents evidence
1589 Good laptop with amazing features at the price range. Rather slow at start up but makes up once it starts. Good battery life and hp support. USB Jack's are cumbersome and one is rather slow. Sound quality is good. Overall nice product at this range..\n good laptop amaz featur price rang rather slow start make start good batteri life hp support usb jack cumbersom one rather slow sound qualiti good overal nice product range\n Positive 46 good laptop amazing features price range slow start good battery life hp support usb jack cumbersome one slow sound quality good overall nice product range
1590 Very very slow. It is not even working fast with one browser. Even with only one Excel opened. Screen is not being displayed. I have restart manually with power button every 1 hr once. Worst product.dont buy. Cheaters.\n slow even work fast one browser even one excel open screen display restart manual power button everi 1 hr worst productdont buy cheaters\n Negative 38 slow browser excel screen power button hr worst product.dont buy cheaters
1591 System should be fast and battery life should be increase otherwise all thing is perfect ❤️❤️love this laptop cheak it all thing is fine you can have this laptop .....but from my side I am well satisfied by this product 😊😊\n system fast batteri life increas otherwis thing perfect ❤️❤️love laptop cheak thing fine laptop side well satisfi product 😊😊\n Positive 41 system fast battery life increase thing perfect love laptop thing fine laptop side satisfied product
1592 Screen is having lines. Want to return or get replacement.\n screen line want return get replacement\n Positive 10 screen lines replacement
1593 Laptop is very good with good performance and battery life. The negative sides are the weight and size of the laptop. I didn't realise the size of the laptop is very big and weight is heavy which makes it heavy to carry. The mouse pad in the laptop is not that user friendly. I would give a 3.5 star rating.\n laptop good good perform batteri life neg side weight size laptop didnt realis size laptop big weight heavi make heavi carri mous pad laptop user friendli would give 35 star rating\n Positive 61 laptop good good performance battery life negative sides weight size laptop size laptop big weight heavy heavy mouse pad laptop user friendly star rating
1594 It's almost about a month now and I like the sleek design.. Charging is fast.. Battery backup is good ... Its bit slow "sometimes" in rare cases even when I use small software.... Boot up speed is very quick almost within 10sec... Overall I like this laptop\n almost month like sleek design charg fast batteri backup good bit slow sometim rare case even use small softwar boot speed quick almost within 10sec overal like laptop\n Positive 47 month sleek design fast battery backup good bit slow rare cases small software boot speed quick 10sec laptop
1595 IT HAS BEEN ADVISED AT AMAZON THAT THERE IS 1 YEAR MANUFACTURER WARRANTY. BUT WHEN I CHECK ON HP SITE. THE PRODUCT WAS ALREADY ACTIVE AND ONLY 5 MONTHS WARRANTY LEFT. 7 MONTHS WARRANTY LOSS. AND NO TAKER OF IT. THE WARRANTY SHOULD START FROM THE DATE OF INVOICE OF PURCHASE BY THE CONSUMER NOT BY RETAILER, WHICH IS IN THIS CASE.\n advis amazon 1 year manufactur warranti check hp site product alreadi activ 5 month warranti left 7 month warranti loss taker warranti start date invoic purchas consum retail case\n Negative 62 amazon year manufacturer warranty hp site product active months warranty months warranty loss taker warranty date invoice purchase consumer retailer case
1596 MS office 365 installed was a trial version & got expired within 15 days of Laptop delivery.All buyers consider extra budget to buy genuine Office & Antivirus within approx 1 month once you receive the Laptop.\n ms offic 365 instal trial version got expir within 15 day laptop deliveryal buyer consid extra budget buy genuin offic antiviru within approx 1 month receiv laptop\n Neutral 36 ms office trial version days laptop delivery.all buyers extra budget genuine office antivirus approx month laptop
1597 Nice product from hp.... Very good package...\n nice product hp good package\n Positive 7 nice product hp good package
1598 Brought it for someone else. But satisfied.\n brought someon els satisfied\n Positive 7 satisfied
1599 The laptop speed is very slow compare to described in product details.It is not having integrated graphics. It is not giving backup of 13 hrs as mentioned in the description. It is taking so much time in booting. So I want to return it and get my money back.It was amazon fulfilled.\n laptop speed slow compar describ product detailsit integr graphic give backup 13 hr mention descript take much time boot want return get money backit amazon fulfilled\n Positive 53 laptop speed slow compare product graphics backup hrs description much time booting money amazon
1600 value for money good quality and very sleek\n valu money good qualiti sleek\n Positive 8 value money good quality sleek
1601 Thanks to giving you wonderful gift to me amozon team it's a great work.Once again thanks\n thank give wonder gift amozon team great workonc thanks\n Positive 16 thanks wonderful gift amozon team great work.once thanks
1602 Received with damaged key board .\n receiv damag key board \n Neutral 6 key board
1603 Not satisfied...It was not getting on after pressing the power button and also sometimes after connecting the charger.. sometimes cross signs are showing in battery box..all are happening frequently..service center's way of communication is also poor..\n satisfiedit get press power button also sometim connect charger sometim cross sign show batteri boxal happen frequentlyservic center way commun also poor\n Negative 36 satisfied power button charger signs battery box service center way communication poor
1604 The battery life is not that good. Have to charge again and again . It drains very fast . It hangs many times . But it got it for 28700 exchange . The speakers are also not good. So value for money for me .\n batteri life good charg drain fast hang mani time got 28700 exchang speaker also good valu money \n Positive 46 battery life good many times exchange speakers good value money
1605 Cons:1) slow in processing2) battery life is average and not good\n cons1 slow processing2 batteri life averag good\n Positive 11 cons:1 slow processing2 battery life average good
1606 Good On Time delivery\n good time delivery\n Positive 4 good time delivery
1607 Product very good qualityBattery life better to other very good looking windows working good but working slow and mostly time updated ms office tools without update not working excel etc.update compulsory for fast and regular good working\n product good qualitybatteri life better good look window work good work slow mostli time updat ms offic tool without updat work excel etcupd compulsori fast regular good working\n Positive 37 product good qualitybattery life other good looking windows slow time ms office tools update excel etc.update compulsory fast regular good working
1608 Nice product...\n nice product\n Positive 2 nice product
1609 Fast and good\n fast good\n Positive 3 fast good
1610 Could have been more Battery life and better deal on exchange with same brand laptops\n could batteri life better deal exchang brand laptops\n Positive 15 more battery life better deal exchange same brand laptops
1611 This Laptop is very good look vise but performance vise is slow even i5 processor and 8 gb ram but speed is not very good . but over all performance is good . i think lenovo is better than hp in this price range .\n laptop good look vise perform vise slow even i5 processor 8 gb ram speed good perform good think lenovo better hp price rang \n Positive 46 laptop good look vise performance vise i5 processor gb ram speed good performance good lenovo better hp price range
1612 Unbelievable price\n unbeliev price\n Neutral 2 unbelievable price
1613 This a really cool product it good battery life it's light weight and good value of money I am overjoyed with this product\n realli cool product good batteri life light weight good valu money overjoy product\n Positive 24 cool product good battery life light weight good value money overjoyed product
1614 I have got a replacement for the order. It is working fine. The process is good.\n got replac order work fine process good\n Positive 16 replacement order process good
1615 overall laptop is good but little bit slow either i suggest to other people they can buy this\n overal laptop good littl bit slow either suggest peopl buy this\n Positive 18 overall laptop good little bit slow other people
1616 Good product and VFM, delivery by Amazon was good.\n good product vfm deliveri amazon good\n Positive 9 good product vfm delivery amazon good
1617 Budget laptop and quality of product is good\n budget laptop qualiti product good\n Positive 8 budget laptop quality product good
1618 Don't buy this laptop.. they are giving MS office with pre installed but not activated after one week it is asking activation charges... Totally fruad product.. use less customer care services\n dont buy laptop give ms offic pre instal activ one week ask activ charg total fruad product use less custom care services\n Positive 31 laptop ms office pre week activation charges fruad product less customer care services
1619 It is 15 inches...it wasn't 15.6 inches... expect size , all other features are alright.\n 15 inchesit wasnt 156 inch expect size featur alright\n Positive 15 inches inches size other features alright
1620 I got this with Win 10, and MS office but didn't get those software, only it comes pre-installed. But after formatting unable to get those again. Tried contacting Hp but no proper feedback.\n got win 10 ms offic didnt get softwar come preinstal format unabl get tri contact hp proper feedback\n Positive 33 win ms office software pre installed unable hp proper feedback
1621 Battery life is average weight is average best product it is value of money it can run any game smoothly less best\n batteri life averag weight averag best product valu money run game smoothli less best\n Positive 22 battery life average weight average best product value money game best
1622 Where is product key of ms office\n product key ms office\n Neutral 7 product key ms office
1623 Poor experience dispaly damage please replace\n poor experi dispali damag pleas replace\n Negative 7 poor experience dispaly damage
1624 This HP 15q-ds0029TU Laptop with 7th generation Intel core i5 - 7200U Processor (2.5 GHz) with 8GB DDR4 RAM & 1TB Hard Drive is perfect for normal use.I love this Laptop.\n hp 15qds0029tu laptop 7th gener intel core i5 7200u processor 25 ghz 8gb ddr4 ram 1tb hard drive perfect normal usei love laptop\n Positive 31 hp 15q ds0029tu laptop 7th generation intel core i5 processor ghz gb ddr4 ram tb hard drive perfect normal love laptop
1625 lot of issues I faced in buying through amazon, no problem with HP , BUT buying through amazon is inviting trouble for yourself. starts with activating Microsoft … to warranty issues. NOT RECOMMENDING\n lot issu face buy amazon problem hp buy amazon invit troubl start activ microsoft … warranti issu recommending\n Negative 33 lot issues amazon problem hp amazon trouble microsoft warranty issues
1626 When opening and closing the lid, the bottom of the screen display is distorting at bottom section\n open close lid bottom screen display distort bottom section\n Negative 17 lid bottom screen display bottom section
1627 The warranty card is not present inside the box\n warranti card present insid box\n Neutral 9 warranty card present box
1628 Just go for it if you are vollege student\n go volleg student\n Neutral 9 vollege student
1629 The laptop is not working since the day it arrived. Horrible experience and will never reccomend it to anyone.\n laptop work sinc day arriv horribl experi never reccomend anyone\n Neutral 19 laptop day horrible experience
1630 Seems like bit slow and non responsive and keypad is hard to press, better visit near by showroom and compare models before buying. Recommendations are go with SSD version.\n seem like bit slow non respons keypad hard press better visit near showroom compar model buy recommend go ssd version\n Positive 29 bit slow non responsive keypad hard better showroom models recommendations ssd version
1631 I purchased laptop yesterday and I think it's really very good.i didn't have laptop earlier so I can't compare it with any. Can someone suggest me how to activate MS office?\n purchas laptop yesterday think realli goodi didnt laptop earlier cant compar someon suggest activ ms office\n Neutral 31 laptop yesterday good.i laptop ms office
1632 There is Problem in usb ports ....\n problem usb port \n Negative 7 problem usb ports
1633 Battery not working properly\n batteri work properly\n Neutral 4 battery
1634 Sound quality, picture quality is good.\n sound qualiti pictur qualiti good\n Positive 6 sound quality picture quality good
1635 Last 2 months I have been using this laptop I have no issue with it working properly battery backup quality....I suggest you to purchase this if u have the same budget.... around 40k\n last 2 month use laptop issu work properli batteri backup qualityi suggest purchas u budget around 40k\n Neutral 33 last months laptop issue battery backup quality same budget
1636 Little slow system\n littl slow system\n Neutral 3 little slow system
1637 Value for the money\n valu money\n Neutral 4 value money
1638 Overall good laptop it's been 3 months and no complaints\n overal good laptop 3 month complaints\n Positive 10 overall good laptop months complaints
1639 Overall performance is slow. Battery life is good. Value for money is not worthy compared to other laptops available. No keyboard light available..\n overal perform slow batteri life good valu money worthi compar laptop avail keyboard light available\n Positive 23 overall performance slow battery life good value money worthy other laptops available keyboard light available
1640 Order is for 8th generation and received part was 7th generation.In details its show 7th generation and in headlines shows 8th generation\n order 8th gener receiv part 7th generationin detail show 7th gener headlin show 8th generation\n Neutral 22 order 8th generation part 7th show 7th generation headlines 8th generation
1641 Simply Excellent\n simpli excellent\n Positive 2 excellent
1642 Completely waste product\n complet wast product\n Neutral 3 product
1643 Not working in ms office properlyNo support technical team in HPNo solution in Amazon teamNot purchase in onlineOffline is good support\n work ms offic properlyno support technic team hpno solut amazon teamnot purchas onlineofflin good support\n Positive 21 ms office properlyno technical team hpno solution amazon teamnot purchase onlineoffline good support
1644 The laptop is value buy. But it takes huge time to boot, which is rather annoying.\n laptop valu buy take huge time boot rather annoying\n Negative 16 laptop value buy huge time boot annoying
1645 You hide the fact that display is not LED , disappointed.\n hide fact display led disappointed\n Negative 11 fact display disappointed
1646 Worst product after one month it start hanging, and slow,. Done buy this laptop\n worst product one month start hang slow done buy laptop\n Negative 14 worst product month slow laptop
1647 Hi This is Venkat, in my laptop MS office 2016 is not activated and not able to access any office related file please do the needful for this request.\n hi venkat laptop ms offic 2016 activ abl access offic relat file pleas need request\n Neutral 29 venkat laptop ms office able office file needful request
1648 Totally fake product.........don't waste your money..!!\n total fake productdont wast money\n Negative 6 fake product don't money
1649 Not worth for money, found defect as well\n worth money found defect well\n Positive 8 worth money defect
1650 Its nice\n nice\n Positive 2 nice
1651 Battery is not good.....even very bad 👎👎👎\n batteri goodeven bad 👎👎👎\n Negative 7 battery good bad
1652 Nice one. Good package and delivery.\n nice one good packag delivery\n Positive 6 nice good package delivery
1653 Laptop is good working is soomthly till date but delivery not done registered address.delivery experience very bad.\n laptop good work soomthli till date deliveri done regist addressdeliveri experi bad\n Negative 17 laptop good working date delivery address.delivery experience bad
1654 They sell old and slow laptops.. I am really upset with this kinda delivery of Amazon.. No quality of laptop especially hp.\n sell old slow laptop realli upset kinda deliveri amazon qualiti laptop especi hp\n Negative 22 old slow laptops upset kinda delivery amazon quality laptop hp
1655 Laptop is little bit slow because of 7th gen and 3 mb cache and integrated graphics.Work needs to be done on these specifications.\n laptop littl bit slow 7th gen 3 mb cach integr graphicswork need done specifications\n Neutral 23 laptop little bit slow 7th gen mb cache integrated graphics.work needs specifications
1656 Laptop working well so far. Happy customer\n laptop work well far happi customer\n Positive 7 laptop happy customer
1657 Price is comparatively high.\n price compar high\n Neutral 4 price high
1658 Good as of now\n good now\n Positive 4 good
1659 Light weight.\n light weight\n Neutral 2 light weight
1660 The dvd writer is defective , its an only 2 week old laptop. The writer was found to be defective in during first use only\n dvd writer defect 2 week old laptop writer found defect first use only\n Negative 25 dvd writer defective only week old laptop writer defective first use
1661 Value for Money it's useful for those who are looking for a multiple users..\n valu money use look multipl users\n Neutral 14 value money useful multiple users
1662 Product description said 8th gen.. Product lable says 7th generation. And no bag , headphone with. Why looting ppl\n product descript said 8th gen product labl say 7th gener bag headphon loot ppl\n Neutral 19 product description 8th gen product lable 7th generation bag headphone ppl
1663 Product is not good 1st day itself keyboard is not working\n product good 1st day keyboard working\n Positive 11 product good 1st day keyboard
1664 It was a very good product at the prize range.\n good product prize range\n Positive 10 good product prize range
1665 Little bit slow, otherwise ok\n littl bit slow otherwis ok\n Positive 5 little bit slow ok
1666 Laptop is slim & good but i am facing problem in chrome & Google websites.\n laptop slim good face problem chrome googl websites\n Positive 15 laptop slim good problem chrome google websites
1667 It doesn't live upto expectations. Very slow in responding\n doesnt live upto expect slow responding\n Neutral 9 upto expectations slow
1668 it's a good product exept its heavy weight... Obviously because of so many features it's great...\n good product exept heavi weight obvious mani featur great\n Positive 16 good product heavy weight many features great
1669 Product is good but its warranty is for four months instead of one year now i want to extend its warranty\n product good warranti four month instead one year want extend warranty\n Positive 21 product good warranty months year warranty
1670 Very slow system, no value for money\n slow system valu money\n Neutral 7 slow system value money
1671 After 1 month system is getting slow.I don't even installed more than 2 gb of data in 1tb ROM.\n 1 month system get slowi dont even instal 2 gb data 1tb rom\n Neutral 19 month system more gb data tb rom
1672 To much time takes to process\n much time take process\n Neutral 6 much time
1673 Good no issues until now. Happy\n good issu happy\n Positive 6 good issues happy
1674 Take much time to start up...Compact\n take much time start upcompact\n Neutral 7 much time compact
1675 Laptop is very good. I use almost whole day. Very good performance.\n laptop good use almost whole day good performance\n Positive 12 laptop good whole day good performance
1676 Awesome product at this price genuine one window +2019 ms office you all get under at 38k\n awesom product price genuin one window 2019 ms offic get 38k\n Neutral 17 awesome product price genuine window +2019 ms office 38k
1677 The battery is so worst. The performance is average.\n batteri worst perform average\n Negative 9 battery worst performance average
1678 Loved these laptop\n love laptop\n Positive 3 laptop
1679 battery is draining a lot faster than you usual..\n batteri drain lot faster usual\n Neutral 9 battery lot usual
1680 Since it is new no problem as yet.\n sinc new problem yet\n Negative 8 new problem
1681 Worthy\n worthy\n Positive 1 worthy
1682 Worth for value...\n worth value\n Positive 3 worth value
1683 It is sleek and good looking\n sleek good looking\n Positive 6 sleek good looking
1684 It's a worst experience\n worst experience\n Negative 4 worst experience
1685 Light weight but fiber body is not good need a improvement . Its should be metalic\n light weight fiber bodi good need improv metalic\n Positive 16 light weight fiber body good need improvement metalic
1686 Twb YouTube channel\n twb youtub channel\n Neutral 3 twb youtube channel
1687 Worth it\n worth it\n Positive 2 worth
1688 Nice products and low price\n nice product low price\n Positive 5 nice products low price
1689 The best product at this price range, thanks to Amazon for the discount.\n best product price rang thank amazon discount\n Positive 13 best product price range thanks amazon discount
1690 Good so far. It’s working fine.\n good far it’ work fine\n Positive 6 good
1691 Not a good product quality is very down all buttons r coming out from laptop\n good product qualiti button r come laptop\n Positive 16 good product quality buttons r laptop
1692 One the best Products from HP\n one best product hp\n Positive 6 one best products hp
1693 not good bad performance, very slow response\n good bad perform slow response\n Negative 7 good bad performance slow response
1694 Very slow processing speed . takes so much time to open ..\n slow process speed take much time open \n Neutral 12 slow processing speed much time
1695 This product purchases are Waste money\n product purchas wast money\n Neutral 6 product purchases waste money
1696 Touchpad is not working and performamce is not good as expected.\n touchpad work performamc good expected\n Positive 11 touchpad performamce good
1697 Laptop speed is not upto the Mark otherwise good laptop\n laptop speed upto mark otherwis good laptop\n Positive 10 laptop speed mark good laptop
1698 Processor is very slowThere is no partition in this window\n processor slowther partit window\n Neutral 10 processor slowthere partition window
1699 Pretty ordinary model.\n pretti ordinari model\n Neutral 3 ordinary model
1700 Battery life is good.light in weight so, good for traveling.\n batteri life goodlight weight good traveling\n Positive 10 battery life good.light weight good
1701 In. This laptop box warrenty card is not available so please give it\n laptop box warrenti card avail pleas give it\n Neutral 13 laptop box warrenty card available
1702 7th Gen processor. Not advertised clearly. Very high priced.\n 7th gen processor advertis clearli high priced\n Neutral 9 7th gen processor
1703 Incomplete software , Duplicate Model. Disturbing...\n incomplet softwar duplic model disturbing\n Negative 6 incomplete software duplicate model
1704 So good product thank you Amazon andIm so fell good\n good product thank amazon andim fell good\n Positive 10 good product amazon andim good
1705 Weak hard disk is the big problem and boot loader is not Available\n weak hard disk big problem boot loader available\n Negative 13 weak hard disk big problem boot loader available
1706 Anti glare\n anti glare\n Negative 2 anti glare
1707 Starting very laye\n start laye\n Neutral 3 laye
1708 Processor & it's booting time is slow.\n processor boot time slow\n Neutral 7 processor booting time slow
1709 Okey good quality and better of the material.\n okey good qualiti better material\n Positive 8 okey good quality better material
1710 Very good product, really worth for the money. Stylish design\n good product realli worth money stylish design\n Positive 10 good product worth money stylish design
1711 Good product in best price tag battery is just auwsm\n good product best price tag batteri auwsm\n Positive 10 good product best price tag battery auwsm
1712 I am not a very heavy user but I find this product very nice\n heavi user find product nice\n Positive 14 heavy user product nice
1713 Veey good prod.. hp.. will always deliver ..\n veey good prod hp alway deliv \n Positive 8 veey good prod
1714 Good laptop quality, value for money product\n good laptop qualiti valu money product\n Positive 7 good laptop quality value money product
1715 Good sound quality\n good sound quality\n Positive 3 good sound quality
1716 Good battery life, light weight and value for money\n good batteri life light weight valu money\n Positive 9 good battery life light weight value money
1717 Battery life little bit not as expected.\n batteri life littl bit expected\n Neutral 7 battery life little bit
1718 Every thing is good.... Except cemera.....\n everi thing good except cemera\n Positive 6 thing good cemera
1719 Very good quality on this range\n good qualiti range\n Positive 6 good quality range
1720 Improve thickness and battery\n improv thick battery\n Neutral 4 thickness battery
1721 Superb laptop love it but too costly\n superb laptop love costly\n Positive 7 superb laptop costly
1722 Nice product...worth for buy\n nice productworth buy\n Positive 4 nice product worth buy
1723 Hp never disappoints\n hp never disappoints\n Positive 3 hp disappoints
1724 Good performance...\n good performance\n Positive 2 good performance
1725 It's good for students and daily usage!\n good student daili usage\n Positive 7 good students daily usage
1726 Durable, less weight at affordable cost\n durabl less weight afford cost\n Neutral 6 durable less weight affordable cost
1727 loading time taking 15mints when i start system\n load time take 15mint start system\n Neutral 8 time 15mints system
1728 Processing is very late\n process late\n Neutral 4 processing late
1729 Little bit slow and battery life also very low\n littl bit slow batteri life also low\n Negative 9 little bit slow battery life low
1730 Processing speed is very slow.\n process speed slow\n Neutral 5 processing speed slow
1731 Always need to video shoot before opening package products...HP laptop not in packaging only charger received...zero value after paying full money... Laptop not packaged for charging to check battery life.... And completely laptop weight is missed ....too sad\n alway need video shoot open packag productshp laptop packag charger receivedzero valu pay full money laptop packag charg check batteri life complet laptop weight miss sad\n Negative 38 shoot package products hp laptop charger value full money laptop battery life laptop weight sad
1732 Very good laptop @ 22k. Right enough for a college student with decent performance. Little slow with 4GB memory. Pre installed Windows 10 Home & MS Office. But, office needs to bought separately & just use the MS account & no installation needed to use office products. Nice screen & nice looking laptop & go for it, no issues.\n good laptop 22k right enough colleg student decent perform littl slow 4gb memori pre instal window 10 home ms offic offic need bought separ use ms account instal need use offic product nice screen nice look laptop go issues\n Positive 59 good laptop college student decent performance little slow gb memory windows home ms office office ms account installation office products nice screen nice looking laptop issues
1733 Plz don't buy dis laptop it's not worth for 22k not so good to use its just for show off not a good product to sell in Amazon Very disappointed\n plz dont buy di laptop worth 22k good use show good product sell amazon disappointed\n Positive 30 dis laptop worth 22k good show good product amazon
1734 it is a 3rd grade laptop which cannot open ms excel and takes its own time. Too slow for any operations. This laptop reminded me of 2002 when i used to study on school PC for my 2nd standard classs. Maybe it is more slower then that school PC.\n 3rd grade laptop cannot open ms excel take time slow oper laptop remind 2002 use studi school pc 2nd standard classs mayb slower school pc\n Negative 49 3rd grade laptop ms excel own time slow operations laptop school pc 2nd standard classs slower school pc
1735 Just completed only 30days..not much rough use.. Product now is not getting on.. Very bad productVery bad product and very bad service..I strongly recommend no one to buy this\n complet 30daysnot much rough use product get bad productveri bad product bad servicei strongli recommend one buy this\n Negative 29 rough use product bad productvery bad product bad service one
1736 The HP 15 db0209au 15.6-inch Laptop (A4-9125/4GB/1TB/Windows 10/Integrated Graphics), Jet Black is good for basic , moderate use.The description say it comes with anti-glare screen, but actually it doesn't have anti-glare screen.Its very slow, it takes a long time to open simple things like file explorer, MS Word, etc as Pre-installed Windows 10 is extremely slow.Not at all good for heavy games. But one can play light weight games.Microsoft applications like Word, etc ask for Product Key for activation which is not provided. So one might have to reinstall Microsoft office.Rest, the laptop is very light weight, quite sturdy n good looking with good keypad panel and touch pad.But this is what u can get at this price (bought at Rs.20,000/-)(P.S: One may try re-installing Windows10 or any other version to make the system run smoothly)\n hp 15 db0209au 156inch laptop a491254gb1tbwindow 10integr graphic jet black good basic moder useth descript say come antiglar screen actual doesnt antiglar screenit slow take long time open simpl thing like file explor ms word etc preinstal window 10 extrem slownot good heavi game one play light weight gamesmicrosoft applic like word etc ask product key activ provid one might reinstal microsoft officerest laptop light weight quit sturdi n good look good keypad panel touch padbut u get price bought rs20000p one may tri reinstal windows10 version make system run smoothly\n Positive 137 hp db0209au laptop a4 windows graphics jet black good basic moderate description anti - glare screen anti - glare screen.its slow long time simple things file explorer ms word pre - installed windows slow.not good heavy games light weight games.microsoft applications word product key activation microsoft office.rest laptop light weight sturdy good good keypad panel pad.but price rs.20,000/-)(p.s re - installing other version system
1737 It’s not worthy for the money..it’s totally waste of money..\n it’ worthi moneyit’ total wast money\n Neutral 10 worthy money waste money
1738 Windows too slow. And this product too badAnd All so two members replace to Amazon\n window slow product badand two member replac amazon\n Positive 16 windows slow product badand members amazon
1739 Hang in windows 10 from day 1If u want to change windows no drivers will available in websiteIt become a dubba without driver of usb, Lan, wifi and others\n hang window 10 day 1if u want chang window driver avail websiteit becom dubba without driver usb lan wifi others\n Positive 29 hang windows day 1if windows drivers websiteit dubba driver usb lan wifi others
1740 Microsoft office not working\n microsoft offic working\n Neutral 4 microsoft office
1741 Secreen quality bad not bey this very bad exprince , amazon customer care not support ,\n secreen qualiti bad bey bad exprinc amazon custom care support \n Negative 16 secreen quality bad bad exprince amazon customer support
1742 Nothing to like for this product it is taking 20 min to start and totally wast of money dont buy from this sellerDidnt get quality product1st I received used productThan exchanged it and still worth lessI want to give 0 star rating for this product butWithout rating review is not possible to upload revuew\n noth like product take 20 min start total wast money dont buy sellerdidnt get qualiti product1st receiv use productthan exchang still worth lessi want give 0 star rate product butwithout rate review possibl upload revuew\n Positive 54 product min wast money sellerdidnt quality product1st productthan worth lessi star rating product butwithout rating review possible revuew
1743 Pathetic performance, can’t do multitasking AMD processors is the worst, waste of money and amazon support is the worst\n pathet perform can’t multitask amd processor worst wast money amazon support worst\n Negative 19 pathetic performance t amd processors worst waste money amazon support worst
1744 Everything is good.except it's supported software Ms office is not working perfectly as mentioned in discrimination. I require support to start Ms office. Or re-install by own\n everyth goodexcept support softwar ms offic work perfectli mention discrimin requir support start ms offic reinstal own\n Positive 27 good.except software ms office discrimination support ms office re - install own
1745 As described. Initiation took a little more time than required. But after that its function well enough. A work laptop not meant for gaming. Affordable and best in the range.\n describ initi took littl time requir function well enough work laptop meant game afford best range\n Positive 30 initiation little more time function work laptop affordable best range
1746 Nothing as per the description and promised. Pathetic! I have been asked them to replace and it's almost been a month I have no updates no calls? Fooling customers around and taking their money.\n noth per descript promis pathet ask replac almost month updat call fool custom around take money\n Negative 34 description pathetic month updates calls customers money
1747 It took 15 to 20 minutes for each operation.\n took 15 20 minut operation\n Neutral 9 minutes operation
1748 Battery is not lasting for more than 1.5 hrs & HP is making false complaints that it will last for 6- 7 hrs...i feel that I am totally trapped after buying this laptop...Amazon is saying that we will assist you & no body is helpingme\n batteri last 15 hr hp make fals complaint last 6 7 hrsi feel total trap buy laptopamazon say assist bodi helpingme\n Negative 45 battery more hrs hp false complaints 6- hrs laptop amazon body helpingme
1749 The processor is a bit slow in the beginning as it has been installed with Windows 10, it could be better to use i. Windows 7 but overall the sound and graphics are good and its value for money product.\n processor bit slow begin instal window 10 could better use window 7 overal sound graphic good valu money product\n Positive 40 processor bit slow beginning windows better i. windows sound graphics good value money product
1750 Too worst i buy this laptop for my brother but it the motherboard is not working i try to write customers support three times but not reply.please i strongly recommend do not buy this laptope.\n worst buy laptop brother motherboard work tri write custom support three time replypleas strongli recommend buy laptope\n Neutral 36 worst laptop brother motherboard customers times reply.please laptope
1751 It is taking abnormally a long time to boot.\n take abnorm long time boot\n Neutral 9 long time boot
1752 Please don't buy this product.Amazon also not responding for replacement or returning of the product.\n pleas dont buy productamazon also respond replac return product\n Neutral 15 product.amazon replacement product
1753 This a good choice.very handy.Ramakrishnan\n good choiceveri handyramakrishnan\n Positive 5 good choice.very handy.ramakrishnan
1754 Liked the product\n like product\n Positive 3 product
1755 Budget laptops..\n budget laptops\n Neutral 2 budget laptops
1756 Good for college students\n good colleg students\n Positive 4 good college students
1757 Computer is too slow and booting and buffering time is too high.Not recommend for purchase\n comput slow boot buffer time highnot recommend purchase\n Positive 15 computer slow buffering time high.not recommend purchase
1758 Not worth for money looks like government laptop of Tamil nadu\n worth money look like govern laptop tamil nadu\n Positive 11 worth money government laptop tamil
1759 Very slowly operating, battery back-up 1hr, pre-installed msg office not getting open very bad experience with this lap\n slowli oper batteri backup 1hr preinstal msg offic get open bad experi lap\n Negative 19 battery up 1hr pre - installed msg office open bad experience lap
1760 Slow Processor\n slow processor\n Neutral 2 slow processor
1761 Very bad product delivered by Amazon,\n bad product deliv amazon\n Negative 6 bad product amazon
1762 Initial its some problem but help line center solution done, its Good & better.\n initi problem help line center solut done good better\n Positive 14 initial problem line center solution good
1763 This product USB port damaged m a poor person m weeping when I see this .pls tell me the solution\n product usb port damag poor person weep see pl tell solution\n Negative 24 product usb port m poor person m weeping solution
1764 Can't get warranty details. Please ensure the warranty detail. Thanks.\n cant get warranti detail pleas ensur warranti detail thanks\n Positive 10 warranty details warranty detail thanks
1765 Worst performance, taking long time to power on, frequently strucked, waste of money\n worst perform take long time power frequent struck wast money\n Negative 13 worst performance long time power waste money
1766 Worth for the money, changed to windows 7..... Windows 10 works very slowly...\n worth money chang window 7 window 10 work slowly\n Positive 13 worth money windows windows works
1767 Taking too much time to start....\n take much time start\n Neutral 6 much time
1768 Value for money and really nice product\n valu money realli nice product\n Positive 7 value money nice product
1769 Home edition not good\n home edit good\n Positive 4 home edition good
1770 Very nice product.\n nice product\n Positive 3 nice product
1771 Worst laptop is there any change of exchange\n worst laptop chang exchange\n Negative 8 worst laptop change exchange
1772 I did not get one year warranty card with the laptop\n get one year warranti card laptop\n Neutral 11 year warranty card laptop
1773 Good laptop but the game stops in between\n good laptop game stop between\n Positive 8 good laptop game
1774 All r ok. But battery not work properly\n r ok batteri work properly\n Positive 8 r battery work
1775 That's is my problem so replacement my product\n that problem replac product\n Negative 8 problem product
1776 Basically nice\n basic nice\n Positive 2 nice
1777 It will be hanging maximum number and\n hang maximum number and\n Positive 7 maximum number
1778 Worst product i bought on amzon till date\n worst product bought amzon till date\n Negative 8 worst product amzon date
1779 Not like prescribed in advertisement\n like prescrib advertisement\n Positive 5 advertisement
1780 Laptop is Best But, Slow Working\n laptop best slow working\n Positive 6 laptop best slow working
1781 Display Dim otherwise superb\n display dim otherwis superb\n Positive 4 display dim superb
1782 Product is very poor\n product poor\n Negative 4 product poor
1783 Excellent product this price\n excel product price\n Positive 4 excellent product price
1784 Cool\n cool\n Positive 1 cool
1785 Nice Product. Value for money.\n nice product valu money\n Positive 5 nice product value money
1786 Very worst product\n worst product\n Negative 3 worst product
1787 Don't Buy this..\n dont buy this\n Neutral 3
1788 Speed slow hai\n speed slow hai\n Neutral 3 speed slow hai
1789 Charger broken\n charger broken\n Negative 2 charger broken
1790 Beste leptop\n best leptop\n Positive 2 beste leptop
1791 Garbage\n garbage\n Neutral 1 garbage
1792 Wrost\n wrost\n Neutral 1 wrost
1793 Poor\n poor\n Negative 1 poor
1794 Fake\n fake\n Negative 1 fake
1795 Only cd\n cd\n Neutral 2 cd
1796 Good laptop , smother operation. Screen , Battery Backup , Too good for surfing,HP laptop at this price with original Windows Ten, Wow... Too Happy to get this,\n good laptop smother oper screen batteri backup good surfinghp laptop price origin window ten wow happi get this\n Positive 28 good laptop smother operation screen battery backup good surfing hp laptop price original windows happy
1797 Pathetic product. Didn't start at first. Now all it does it hang. I want to return this product and get my money back.\n pathet product didnt start first hang want return product get money back\n Positive 23 pathetic product product money
1798 Very nice laptop at this budget .we can explore more fun by watching videos and play games It has also good battery life and have big screen\n nice laptop budget explor fun watch video play game also good batteri life big screen\n Positive 28 nice laptop budget more fun videos games good battery life big screen
1799 Super laptop nice super amazon thanks\n super laptop nice super amazon thanks\n Positive 6 nice super amazon thanks
1800 System is very slow. Difficult to use it.\n system slow difficult use it\n Negative 8 system slow difficult
1801 With in 1 month it's not working what can I do now\n 1 month work now\n Neutral 12 month
1802 Which core in this laptop\n core laptop\n Neutral 5 laptop
1803 Friends Don't buy this laptop.\n friend dont buy laptop\n Positive 5 friends laptop
1804 Osm\n osm\n Neutral 1 osm
1805 Good. But expecting\n good expecting\n Positive 3 good
1806 Nice for gaming heavily gamer run smoothly very good screen resolution best in class\n nice game heavili gamer run smoothli good screen resolut best class\n Positive 14 nice gamer good screen resolution class
1807 Return my product\n return product\n Neutral 5 product
1808 My laptop has technical issue which makes it very slow in any given command .\n laptop technic issu make slow given command \n Neutral 15 laptop technical issue slow command
1809 Better\n better\n Positive 1 better
1810 It is great to experience a Chromebook. This is faster than my Mac and Windows computers and very easy to use. Boots up quite fast. This should be good for most people for general use. This seems to be a well balanced Chromebook and is a good for its price. If someone wants a better quality screen, they can go for a higher end Chromebook. As a daily driver, this has become my first go to machine. Good to see that finally HP is bringing Chromebooks to India at a reasonable price.\n great experi chromebook faster mac window comput easi use boot quit fast good peopl gener use seem well balanc chromebook good price someon want better qualiti screen go higher end chromebook daili driver becom first go machin good see final hp bring chromebook india reason price\n Positive 93 great chromebook faster mac windows computers easy boots good most people general use balanced chromebook good price better quality screen higher end chromebook daily driver first go machine good hp chromebooks india reasonable price
1811 Please don't buy this product. I received a faulty product. Its not turned on. I have charged this for 3 hrs but still its not working. I informed amazon call centre regarding this problem, but they are not ready to give replacement also.\n pleas dont buy product receiv faulti product turn charg 3 hr still work inform amazon call centr regard problem readi give replac also\n Negative 43 product faulty product amazon call centre problem ready replacement
1812 overall a good experience of my first Chromebook\n overal good experi first chromebook\n Positive 8 good experience first chromebook
1813 I've been using Chromebooks since they were launched and am completely invested into the Google ecology.The battery life is great, the screen is above average at this price point. Only quibble is the inability of the hinge to enable using it as a tablet. The sound from the speakers is just terrible too. The keyboard and touch screen are both quite responsive. It's a great road warrior - cheap and easy to lug around. If it lasts more than 2 years, that's just great.\n ive use chromebook sinc launch complet invest googl ecologyth batteri life great screen averag price point quibbl inabl hing enabl use tablet sound speaker terribl keyboard touch screen quit respons great road warrior cheap easi lug around last 2 year that great\n Positive 84 chromebooks google ecology.the battery life great screen average price point quibble inability hinge tablet sound speakers terrible keyboard touch screen responsive great road warrior cheap easy more years great
1814 For my everyday purposes of browsing, shopping and social media, this Chromebook is perfect!! I never needed Windows and when I read about the Chromebook, I was hopeful that it is just what I needed...and it is! I'm happy with the screen/display, with the sound...everything! And it's fast too :) If you don't need all the extra bells and whistles that comes with Windows, then you will love the simplicity of the Chromebook.\n everyday purpos brows shop social media chromebook perfect never need window read chromebook hope neededand im happi screendisplay soundeveryth fast dont need extra bell whistl come window love simplic chromebook\n Positive 73 everyday purposes browsing shopping social media chromebook perfect windows chromebook hopeful happy screen display sound :) extra bells whistles windows simplicity chromebook
1815 Very worst only for browsing if u want to purchase this you should go with mobile means mobile is better than chromebook\n worst brows u want purchas go mobil mean mobil better chromebook\n Negative 22 worst mobile means mobile better
1816 Awesome\n awesome\n Positive 1 awesome
1817 A decent Chromebook by HP. White color looks awesome. My very first Chromebook and I am in love with it. Faster and secure than windows. Good for everyday tasks. No lag boosts faster.\n decent chromebook hp white color look awesom first chromebook love faster secur window good everyday task lag boost faster\n Positive 33 decent chromebook hp white color awesome first chromebook love secure windows good everyday tasks lag
1818 This device has got great battery life plus is extremely lightweight. perfect is you're not a heavy software user .Great for students who are not into gaming and stuff\n devic got great batteri life plu extrem lightweight perfect your heavi softwar user great student game stuff\n Positive 29 device great battery life lightweight perfect heavy software user students gaming stuff
1819 Great product. Only there is no backlight key board as stated\n great product backlight key board stated\n Positive 11 great product backlight key board
1820 Nice product from hp. I thought it has a backlit keyboard but it doesn't.\n nice product hp thought backlit keyboard doesnt\n Positive 14 nice product hp backlit keyboard
1821 its so fantastic #favourite laptop\n fantast favourit laptop\n Neutral 5 fantastic # favourite laptop
1822 Only for browsing... Nothing else...\n brows noth else\n Neutral 5 browsing
1823 Microsoft inbuilt installed?And I can use autocad ?We have to use antivirus in this system.\n microsoft inbuilt installedand use autocad use antiviru system\n Neutral 15 microsoft installed?and autocad antivirus system
1824 Product is good enough for basic requirement like net surfing, working on ms office and some basic applications. Though bit slow, but help you sail through your needs.its not for speed hungry people. Best for people looking for budget laptop.\n product good enough basic requir like net surf work ms offic basic applic though bit slow help sail needsit speed hungri peopl best peopl look budget laptop\n Positive 42 product good basic requirement net surfing ms office basic applications bit slow needs.its speed hungry people best people budget laptop
1825 overall good but slightly slow and battery backup disappointing meI got it 28000 in a good price rangestylish look\n overal good slightli slow batteri backup disappoint mei got 28000 good price rangestylish look\n Positive 19 good slow battery backup disappointing mei good price rangestylish look
1826 Good for day to day usage. But before you purchase check if the seller is an authorised reseller of HP otherwise you will have to face warranty issues related to the product. I have faced the same and after lot of phone calls & email I was able to resolve the same.\n good day day usag purchas check seller authoris resel hp otherwis face warranti issu relat product face lot phone call email abl resolv same\n Positive 52 good day day usage check seller reseller hp warranty issues product same lot phone calls email able same
1827 Display super,Battery also good ,touch nd keypad have a very smooth,but I didn't received warranty\n display superbatteri also good touch nd keypad smoothbut didnt receiv warranty\n Positive 15 display super battery good nd keypad smooth warranty
1828 A good quality laptop with high performing processor. Bettery life very satisfactory. No doubt one would get value for money.\n good qualiti laptop high perform processor betteri life satisfactori doubt one would get valu money\n Positive 21 good quality laptop high processor bettery life satisfactory value money
1829 No warranty in the package!!!\n warranti package\n Neutral 5 warranty package
1830 Windows 10 verry sololy sistemAnd your retoiler verry poowr\n window 10 verri sololi sistemand retoil verri poowr\n Neutral 9 windows verry sololy sistemand retoiler verry poowr
1831 Guys,Do not buy this crap thing. The laptop has been giving trouble since day 1.\n guysdo buy crap thing laptop give troubl sinc day 1\n Negative 15 guys crap thing laptop trouble day
1832 VERY GOOD\n good\n Positive 2 good
1833 From the date I bought this. Its been running very slow and it takes half hour just to start and the customer care is very worst.\n date bought run slow take half hour start custom care worst\n Negative 26 date slow half hour customer care worst
1834 After 6 months use.Low build qualityNo good service centre in Hyderabad.\n 6 month uselow build qualityno good servic centr hyderabad\n Positive 11 months qualityno good service centre hyderabad
1835 Good design and value for money\n good design valu money\n Positive 6 good design value money
1836 pic and video quality very bad...too slow to start\n pic video qualiti badtoo slow start\n Neutral 9 pic video quality bad slow
1837 One of the better deals for the configuration and price\n one better deal configur price\n Positive 10 better deals configuration price
1838 HP laptop works smother.\n hp laptop work smother\n Negative 4 hp laptop smother
1839 Best one for my daily use\n best one daili use\n Positive 6 best daily use
1840 Not upto the mark.\n upto mark\n Neutral 4 mark
1841 Overall good product in this price rate\n overal good product price rate\n Positive 7 overall good product price rate
1842 value for money\n valu money\n Neutral 3 value money
1843 Battery is not good and didn't received warranty card\n batteri good didnt receiv warranti card\n Positive 9 battery good warranty card
1844 Pathetic product.Hard drive crashed within 7 months.\n pathet producthard drive crash within 7 months\n Negative 7 pathetic product.hard drive months
1845 as soon as i saw this thing..i felt in love with it ...so i decided to buy it..atleast in this decade....i mortgage my house and got a loan for it....now m happy that i have this ...beside that m now jobless, homeless and ofcourse hopeless...do buy it...i highly recommend it....BRAVO\n soon saw thingi felt love decid buy itatleast decadei mortgag hous got loan itnow happi besid jobless homeless ofcours hopelessdo buy iti highli recommend itbravo\n Positive 50 thing love atleast decade house loan m happy m jobless homeless hopeless
1846 This is a very good laptop.But caused me health issuesBecause living with 1 kidney is difficultBut buy it.\n good laptopbut caus health issuesbecaus live 1 kidney difficultbut buy it\n Positive 18 good laptop.but health issuesbecause kidney difficultbut
1847 Just an amazing laptop, look at the dual screen, as if I can't buy a cheap monitor and connect it and put it beside my desk, no you are too cheap if you do that. The fact that amazon recommended me this laptop because I was looking for a cheap laptop is funny\n amaz laptop look dual screen cant buy cheap monitor connect put besid desk cheap fact amazon recommend laptop look cheap laptop funny\n Positive 53 amazing laptop dual screen cheap monitor desk cheap fact amazon laptop cheap laptop funny
1848 its a very good machine,after buying this machine i m so happy,i lost my 1 eyes 1 kidneyand my house,\n good machineaft buy machin happyi lost 1 eye 1 kidneyand house\n Positive 20 good machine machine m happy eyes kidneyand house
1849 Perfect but overpriced and ram should have been 32gb.\n perfect overpr ram 32gb\n Positive 10 perfect overpriced ram gb
1850 power full dual screen machine and fluent gaming\n power full dual screen machin fluent gaming\n Neutral 8 power full dual screen machine fluent gaming
1851 One solid gaming laptop, not ultra portable but better than most available options.Dual screen, 144Hz refresh rate. Can't complain.Great cooling.Great backlit keyboard.Just waiting for i9 version\n one solid game laptop ultra portabl better avail optionsdu screen 144hz refresh rate cant complaingreat coolinggreat backlit keyboardjust wait i9 version\n Positive 26 solid gaming laptop portable available options.dual screen 144hz refresh rate keyboard.just i9 version
1852 The beast for the gamers. Absolutely fanatastic performance and clarity of the display is just awsome.\n beast gamer absolut fanatast perform clariti display awsome\n Neutral 16 beast gamers fanatastic performance clarity display awsome
1853 The quality of the laptop is good. Fast (due to 256GB NvMe M.2 SSD), Smooth touch.I have received a defective charger. The manufacturer agreed for replacement.Call 18002587170 for HP technical support.It says 10 hours, but the battery backup is around 4-5 hours.No 1TB HDD 5400 rpm, No finger print scanner, Couldn't find Alexa. The seller need to be careful while writing the description of a product. The model number is correct but instead of just copying the description from some other model, the seller can take the pain to check and appropriately modify the description.\n qualiti laptop good fast due 256gb nvme m2 ssd smooth touchi receiv defect charger manufactur agre replacementcal 18002587170 hp technic supportit say 10 hour batteri backup around 45 hoursno 1tb hdd 5400 rpm finger print scanner couldnt find alexa seller need care write descript product model number correct instead copi descript model seller take pain check appropri modifi description\n Positive 95 quality laptop good fast gb nvme m.2 ssd smooth touch.i defective charger manufacturer replacement.call hp technical support.it hours battery backup tb hdd rpm finger print scanner alexa seller careful description product model number correct description other model seller pain description
1854 Disappointed purchase. It's not up to the specifications. No finger print scanner. As per the product description it should contain 256gb ssd and 1tb hdd. But I has only 256gb ssd.\n disappoint purchas specif finger print scanner per product descript contain 256gb ssd 1tb hdd 256gb ssd\n Negative 31 disappointed purchase specifications finger print scanner product description gb ssd tb hdd gb ssd
1855 Does this model along with dh1007, dh 1008, and dh1010 surely have backlitkey board?? I booked dh1006tu. That doesn’thave a backlit keyboar. Confirm plz\n model along dh1007 dh 1008 dh1010 sure backlitkey board book dh1006tu doesn’thav backlit keyboar confirm plz\n Positive 25 model dh1007 dh dh1010 backlitkey board dh1006tu doesn backlit keyboar confirm plz
1856 Good laptop.\n good laptop\n Positive 2 good laptop
1857 Best budget gaming laptop. My only concern is the battery life. In battery it lasts for 3.5 hours if you game, 4-5 hours if you watch a movie and 6 hours if you work.\n best budget game laptop concern batteri life batteri last 35 hour game 45 hour watch movi 6 hour work\n Positive 34 best budget gaming laptop only concern battery life battery hours hours movie hours
1858 Important Message: Seller will sell you very very old product with already expired warranty and on a bundled extended warranty which varied between 6 month or less based on how old is your product. Don't panic, kindly contact HP India support center with your amazon purchase bill with product serial number and they are normally kind enough to reset your product brand warranty. Mine is still under process.Product Review: Let me set the expectation straight, it is a budget laptop.Build quality is plastic, but do not flexes much. Screen is not IPS, but HD quality and anti reflective. Key board is well layed out, but I find the back lit LEDs are bit too bright to my choice. Camera is okeyish, mic and sound is adequate; good for your regular skype calls.1 TB SATA and a old school DVD writer means, laptop is heavy. I would any day prefer to trade off DVD writer for some reduction in weight. Mind you, you will need a table to work on it for long.MS office 2019 H&S comes as lifetime free, but please follow process mentioned in Amazon video to get it activated. Actually, you will have to log in into your MS account from the installed word, activate Office2019 and then download and install it, as the installed version is Office365 trial.As expected with sATA, booting will take some time. I am not a gamer, so can't comment on that. Battery back up is very good for the price, expect 4-5 hours with regular work.Too early to comment on performance, but again it is Ryzen and not i5 and cost some 5k less.Overall, I would term it as a perfect home laptop for every one' use.\n import messag seller sell old product alreadi expir warranti bundl extend warranti vari 6 month less base old product dont panic kindli contact hp india support center amazon purchas bill product serial number normal kind enough reset product brand warranti mine still processproduct review let set expect straight budget laptopbuild qualiti plastic flex much screen ip hd qualiti anti reflect key board well lay find back lit led bit bright choic camera okeyish mic sound adequ good regular skype calls1 tb sata old school dvd writer mean laptop heavi would day prefer trade dvd writer reduct weight mind need tabl work longm offic 2019 hs come lifetim free pleas follow process mention amazon video get activ actual log ms account instal word activ office2019 download instal instal version office365 triala expect sata boot take time gamer cant comment batteri back good price expect 45 hour regular worktoo earli comment perform ryzen i5 cost 5k lessoveral would term perfect home laptop everi one use\n Positive 285 important message seller old product warranty extended warranty month old product contact hp india support center amazon purchase bill product serial number product brand warranty process.product review expectation budget laptop.build quality plastic much screen ips quality anti reflective key board back lit leds bright choice camera okeyish mic sound adequate good regular skype calls.1 tb sata old school dvd writer laptop heavy day dvd writer reduction weight table long.ms office h&s lifetime free process amazon video ms account installed word office2019 version office365 trial.as sata booting time gamer battery good price hours regular work.too performance ryzen i5 less.overall perfect home laptop use
1859 Good configuration. Nice looks. Value for money laptop.\n good configur nice look valu money laptop\n Positive 8 good configuration nice looks value money laptop
1860 Laptop warranty only 2 months remaining... Amazon why cheat us? Now what I do??\n laptop warranti 2 month remain amazon cheat us do\n Negative 14 laptop warranty months amazon
1861 Like the color dont like delivery timingOverall the product is very good\n like color dont like deliveri timingoveral product good\n Positive 12 color delivery timingoverall product good
1862 Nice one\n nice one\n Positive 2 nice
1863 Superb product superb build wuality\n superb product superb build wuality\n Positive 5 superb product superb wuality
1864 Light weight and portable nice look laptop....I like this product because it comes in my hand bag and easy to take anywhere.... according to this price I think ms office should be included in this laptop.....but only 30 days trial version is given by company.\n light weight portabl nice look laptopi like product come hand bag easi take anywher accord price think ms offic includ laptopbut 30 day trial version given company\n Positive 45 light weight portable nice look laptop product hand bag easy price ms office laptop days trial version company
1865 Laptop received today . Power and start button not working . Contacted HP customer care . Basically dead laptop received .\n laptop receiv today power start button work contact hp custom care basic dead laptop receiv \n Negative 21 laptop today power button hp customer care dead laptop
1866 Wirking very slowly\n wirk slowly\n Neutral 3
1867 Need keypad light..Any one know plz suggest how it works\n need keypad lightani one know plz suggest works\n Positive 10 keypad light one
1868 Worst product in my life...Worst service in Bangalore under warranty...After 2 months my laptop keyboard is not working. Till now I am waiting for hp service to repair even after 1 and half month already I reported to them\n worst product lifeworst servic bangalor warrantyaft 2 month laptop keyboard work till wait hp servic repair even 1 half month alreadi report them\n Negative 39 worst product life worst service bangalore warranty months laptop keyboard hp service half month
1869 Hi,I am requesting you kindly send us fresh invoice copy with product serial number and model number,as we are facing some hardware issue for this product and HP asking us for an invoice letter with proper serial number and model number.Kindly share invoice copy for further procedure ......\n hii request kindli send us fresh invoic copi product serial number model numbera face hardwar issu product hp ask us invoic letter proper serial number model numberkindli share invoic copi procedur \n Positive 48 fresh invoice copy product serial number model number hardware issue product hp invoice letter proper serial number invoice copy further procedure
1870 Its performance is too slow.\n perform slow\n Neutral 5 performance slow
1871 Everything is good!\n everyth good\n Positive 3 good
1872 Even Don't consider it for purchase.Screen size is too small so that it is an 10 Inch tablet.\n even dont consid purchasescreen size small 10 inch tablet\n Neutral 18 purchase.screen size small inch tablet
1873 Product screen damaged\n product screen damaged\n Negative 3 product screen
1874 This model has single memory slot no provision for M2 disk\n model singl memori slot provis m2 disk\n Neutral 11 model single memory slot provision m2 disk
1875 Worth\n worth\n Positive 1 worth
1876 compact and light,working fine,purchase from reliance digital.1k cheaper..will give a detail review after some time...overall for now one thing I can say...dont buy this laptop from amazon sellers...\n compact lightwork finepurchas relianc digital1k cheaperwil give detail review timeoveral one thing saydont buy laptop amazon sellers\n Positive 28 compact light purchase reliance digital.1k cheaper detail review time thing dont laptop amazon sellers
1877 Thanks for the review. I was about to buy one. Decided against going ahead.\n thank review buy one decid go ahead\n Positive 14 thanks review about
1878 Working very slow, heating highly. Not a portable product for use in tablet mode. Not satisfied with this product. Dont buy.\n work slow heat highli portabl product use tablet mode satisfi product dont buy\n Neutral 23 slow portable product use tablet mode satisfied product
1879 Very slow processor, I don't like and I did not expect from HP for this kind of waste product ,waste money for this kind of product.\n slow processor dont like expect hp kind wast product wast money kind product\n Positive 26 slow processor hp kind waste product money kind product
1880 Too slow for a HP pavillion laptop\n slow hp pavillion laptop\n Neutral 7 slow hp pavillion laptop
1881 Is this contain ms office\n contain ms office\n Neutral 5 contain ms office
1882 I brought it not from Amazon but from reliance digital. But nevertheless still would like to share my experience which was horrible.1) After one month of purchase the keyboard stopped working.2) I took it too a service centre in dehradun and they "fixed" the problem.3) Barely after a month the problem reappeared .4) Also it is dead slow even my phone S7 works way faster than it. The laptop cannot handle more than a few tab at a time.Please avoid it\n brought amazon relianc digit nevertheless still would like share experi horrible1 one month purchas keyboard stop working2 took servic centr dehradun fix problem3 bare month problem reappear 4 also dead slow even phone s7 work way faster laptop cannot handl tab timepleas avoid it\n Negative 81 amazon reliance digital experience horrible.1 month purchase keyboard working.2 service centre dehradun problem.3 month problem slow phone s7 laptop more few tab time.please avoid
1883 Very slow. Moreover Sl No not mentioned in invoice. When checking online warranty is expired.\n slow moreov sl mention invoic check onlin warranti expired\n Neutral 15 slow sl invoice warranty
1884 Edit 3--------Using this laptop to play 4K content on a 4K TV drops the frame rate to less than 15 and it really struggles. Tested this on a latest 55 inch 4K Sony TV. I suspect its the basic GPU on this unit which cant do more than this. I personally dont own a 4K display yet, so still fine for my purposes for now.Edit 2 - More observations after the upgrade--------------------------------------------------------------------1) Photoshop and light room works just fine to edit 24 MP files from my SLR.2) Tried all sorts of video files (4K, DTS 7.1, X265 etc) with some of them having file size as much as 34GB. It worked on all flawlessly but slightly stuttered only on the biggest of 4K files which doesn't play even half as good on any other computer I have. Even the bluray ISO files played flawlessly. The 8th gen processor is very good at this.3) Track pad sensitivity is excellent and is just as good as anything else I have used. I bought a HP laptop for my brother 2 years back and the track pad was very ordinary on it. Great improvement here.4) Movie play back clarity on this screen is top notch. But need to get it max brightness to be able to see clearly in dimly lit scenes. This may compromise battery life.5) Battery life is 4.5 hrs (it shows remaining time if you change it in BIOS). I wasnt expecting it to be any better either.6) Fan sound continues to draw attention. My daughter asked what the sound was as she hasnt heard any of my other laptops or PC make so much sound. With the room windows closed and AC on, my wife asked if it was raining outside (wasnt really expecting others to find it so obvious)7) Multi tasking is good. Opened multiple CPU crunching apps and they worked just fine. Tried opening a large Excel file with lots of formulas which sometimes makes lesser laptops struggle a bit. Worked just fine.8) Tablet mode is very good. I connected the laptop to my music system via bluetooth and makes it very convenient to listen to music and watch movies.9) Installed Asphalt 9 just to see how it handles. Works without any slow down but kicks up the fan to full speed and heats up as well. During installation, I tried browsing with firefox and it worked just fine. I dont use Chrome as it eventually becomes too heavy to handle.10) As you may all know, SSD makes the boot up and down really fast. This also helps in opening of apps quite fast.11) The RAM usage is now 60% on idle. With the added 4GB. it has more headroom than before and its noticeable.12) Headphone output is loud but not the best quality of sound ive heard. (Tested with audio technica ath m50x). Just decent sound. B&O play enhancements DO NOT work when connected to headphones via the 3.5mm audio output port. Search forums and you will see what I mean.If you are confused between 8th gen core i3 vs i5, consider the base clock speed. The i3 is 2.2 Gz and i5 is 1.8Gz. Higher the clock speed, faster the performance of tasks which only needs single core.Even though modern apps may have the capacity to use multiple cores, over 90% of them still utilizes only a single core to work. So i3 should suit your purposes just fine. If you are into gaming, you anyway need to consider i7 for its much faster clock speed & higher cores. I tried some basic testing in the shop on multiple laptops with i5 and i3. Not all i3 were better than i5 and not all i5 were better than i3. So I made an educated guess and bought this laptop with the upgrade predetermined. It worked out well in the end.Edit - This is my revised review on top and the original one at the bottom.------------------------------------------------------------------------------------------------Performance of the laptop is now good. Here is what ive done to get there.....1)Upgraded the laptop with Samsung 256GB SSD and added Transcend 4 GB DDR4 RAM (both purchased in Amazon India)The install was done via HP authorized service center. I did the disk cloning before I went there. If they are to do that, the will charge lot more.2)Got rid of bloatwares ("HP assistant" is the biggest of them and also the Intel rapid storage). These are real system performance killers3) Installing Samsung Magician will handle the rapid performance, so don't bother with any other settings for this.4) Got rid of the Mcafee AV (even though this laptop comes with a subscription) and installed Avast (my Favorite). This is just my preference.if any of you have installed Kodi (Home media SW), you know it takes few seconds or more when we exit that program. After the above steps, it closes down almost instantly.I honestly didnt think the performance could be improved so much with these upgrades and tweaking on this laptop.I will eventually try photoshop and other image editing programs as well.Now im OK with this Laptop. Also I anyway had decided to upgrade to SSD and 8 GB RAM when I finalized to buy this model laptop.The fan doesnt kick up as often as it did before for basic use but its still loud when system is under load. Hence the system heat up is also less frequent. However parallel tasks like working on the system while windows is installing updates in the background can be really slow.If you want much faster performance, buy a core i7 processor based laptop with SSD and 8 GB RAM. If this is too expensive, get the cheapest you can with i7 processor and upgrade to SSD and additional RAM.Initial impressions after few hours of use: (without any upgrades) - original reviewThe good:1) Price was cheaper than the shop by 3K. Good discounts on top of that which shaved the cost further by almost 4K.2)Touch screen is pretty good. Screen clarity is good as well. (Though I prefer Matt over Gloss.)3)The supplied touch pen maybe useful for some apps.4)Laptop is fairly compact and light.5)Sound from laptop speaker is better than most compact laptops but nothing to write home about.Not so good:1)Weak processor. The fan starts off with minimal work load and gets louder than my PC. Im yet to install any apps other what came with the laptop. I checked the CPU load on task manager and the CPU load spiked to 84% while opening the task manager itself. Ofcourse it dropped back to normal but my other laptop & my PC doesnt struggle so much on older gen processors.2)4GB RAM may not be enough either. The RAM usage on basic operations is over 60%3)Heat management is very ordinary. I barely used it and while lifting up the laptop the temperature was bit too hot to be kept in lap. If this is in August, I cant imagine how hot it will feel in May in a non air conditioned room in Chennai.4)The characters on the keys are very lightly printed. You cant see the keyboard too clearly without backlight or a fairly bright light in the room.\n edit 3use laptop play 4k content 4k tv drop frame rate less 15 realli struggl test latest 55 inch 4k soni tv suspect basic gpu unit cant person dont 4k display yet still fine purpos nowedit 2 observ upgrade1 photoshop light room work fine edit 24 mp file slr2 tri sort video file 4k dt 71 x265 etc file size much 34gb work flawlessli slightli stutter biggest 4k file doesnt play even half good comput even bluray iso file play flawlessli 8th gen processor good this3 track pad sensit excel good anyth els use bought hp laptop brother 2 year back track pad ordinari great improv here4 movi play back clariti screen top notch need get max bright abl see clearli dimli lit scene may compromis batteri life5 batteri life 45 hr show remain time chang bio wasnt expect better either6 fan sound continu draw attent daughter ask sound hasnt heard laptop pc make much sound room window close ac wife ask rain outsid wasnt realli expect other find obvious7 multi task good open multipl cpu crunch app work fine tri open larg excel file lot formula sometim make lesser laptop struggl bit work fine8 tablet mode good connect laptop music system via bluetooth make conveni listen music watch movies9 instal asphalt 9 see handl work without slow kick fan full speed heat well instal tri brows firefox work fine dont use chrome eventu becom heavi handle10 may know ssd make boot realli fast also help open app quit fast11 ram usag 60 idl ad 4gb headroom noticeable12 headphon output loud best qualiti sound ive heard test audio technica ath m50x decent sound bo play enhanc work connect headphon via 35mm audio output port search forum see meanif confus 8th gen core i3 vs i5 consid base clock speed i3 22 gz i5 18gz higher clock speed faster perform task need singl coreeven though modern app may capac use multipl core 90 still util singl core work i3 suit purpos fine game anyway need consid i7 much faster clock speed higher core tri basic test shop multipl laptop i5 i3 i3 better i5 i5 better i3 made educ guess bought laptop upgrad predetermin work well endedit revis review top origin one bottomperform laptop good ive done get there1upgrad laptop samsung 256gb ssd ad transcend 4 gb ddr4 ram purchas amazon indiath instal done via hp author servic center disk clone went charg lot more2got rid bloatwar hp assist biggest also intel rapid storag real system perform killers3 instal samsung magician handl rapid perform dont bother set this4 got rid mcafe av even though laptop come subscript instal avast favorit preferenceif instal kodi home media sw know take second exit program step close almost instantlyi honestli didnt think perform could improv much upgrad tweak laptopi eventu tri photoshop imag edit program wellnow im ok laptop also anyway decid upgrad ssd 8 gb ram final buy model laptopth fan doesnt kick often basic use still loud system load henc system heat also less frequent howev parallel task like work system window instal updat background realli slowif want much faster perform buy core i7 processor base laptop ssd 8 gb ram expens get cheapest i7 processor upgrad ssd addit raminiti impress hour use without upgrad origin reviewth good1 price cheaper shop 3k good discount top shave cost almost 4k2touch screen pretti good screen clariti good well though prefer matt gloss3th suppli touch pen mayb use apps4laptop fairli compact light5sound laptop speaker better compact laptop noth write home aboutnot good1weak processor fan start minim work load get louder pc im yet instal app came laptop check cpu load task manag cpu load spike 84 open task manag ofcours drop back normal laptop pc doesnt struggl much older gen processors24gb ram may enough either ram usag basic oper 603heat manag ordinari bare use lift laptop temperatur bit hot kept lap august cant imagin hot feel may non air condit room chennai4th charact key lightli print cant see keyboard clearli without backlight fairli bright light room\n Positive 1196 edit -------using laptop 4k content 4k tv frame rate less latest inch sony tv basic gpu unit more 4k display fine purposes now.edit more observations upgrade--------------------------------------------------------------------1 photoshop light room mp files slr.2 sorts video files dts x265 file size much gb biggest files half good other computer bluray iso files 8th gen processor good track pad sensitivity excellent good hp laptop brother years track pad ordinary great improvement here.4 movie clarity screen top notch max brightness able scenes battery life.5 battery life hrs time bios better either.6 fan sound attention daughter sound other laptops pc much sound room windows wife others obvious)7 multi tasking good multiple cpu apps large excel file lots formulas lesser laptops bit fine.8 tablet mode good laptop music system bluetooth convenient music movies.9 asphalt slow fan full speed installation firefox chrome heavy handle.10 ssd boot opening apps fast.11 ram usage % idle gb more headroom noticeable.12 headphone output loud best quality sound audio technica ath decent sound b&o play enhancements headphones audio output port search forums 8th gen core i3 i5 base clock speed i3 gz i5 1.8gz clock speed performance tasks single core.even modern apps capacity multiple cores % single core i3 purposes gaming i7 faster clock speed higher cores basic testing shop multiple laptops i5 i3 i3 better i5 i5 better i3 guess laptop upgrade end.edit revised review top original one bottom.------------------------------------------------------------------------------------------------performance laptop good laptop samsung gb ssd gb ddr4 ram amazon india)the install hp authorized service center disk lot bloatwares hp assistant biggest intel rapid storage real system performance killers3 samsung magician rapid performance other settings this.4 mcafee av laptop subscription avast favorite preference.if kodi home media sw few seconds more program above steps performance upgrades laptop.i photoshop other image editing programs laptop ssd gb ram model laptop.the fan basic use loud system load system frequent parallel tasks system windows updates background slow.if faster performance core i7 processor laptop ssd gb ram expensive cheapest i7 processor ssd additional ram.initial impressions few hours use upgrades original reviewthe good:1 price cheaper shop 3k good discounts top cost 4k.2)touch screen good screen clarity good matt touch pen useful apps.4)laptop compact laptop speaker better most compact laptops home about.not good:1)weak processor fan minimal work load louder pc apps other laptop cpu load task manager cpu load % task manager normal other laptop pc older gen processors.2)4 gb ram enough ram usage basic operations management ordinary laptop temperature hot lap august hot may non air conditioned room chennai.4)the characters keys keyboard backlight bright light room
1885 I was looking for a laptop that is:1. Two in one Laptop plus tablet that is 360 degree foldable but not detachable and comes with a free pen2. Full HD display, HDMI port, Type C USB port (this lat one is future proof for next few years)3. Backlit Keyboard (must have for me as I write in poorly lit places at times4. Comes with free Microsoft Office5. Not too small, not too big. I write lot of articles so figured out 14 inch screen just right for me6. Without graphic card so as to cut the weight and price (I don't do video games or editing).7. A reputed brand8. Price less than 50KSo this HP Pavilion x360 14-cd0077TU model matched all my requirements. After Amazon pay cashback it costed 46K, a value for money as it comes with free Office 2016.Initially it was very slow but as I watched few youtube videos to improve performance then it was pretty fast after I applied those tricks.The only low point is low battery life (gives 3 hours after my high performance settings). If you chose low performance settings, you may get 4 hours. I think it's okay, you don't get everything at this price point. It's about 10 days or more, I am really happy so far.Go for it, if you have requirements similar to that of mine and in addition to give a 'cool' look to others with 2 in 1 touch screen gadget at display :-)\n look laptop is1 two one laptop plu tablet 360 degre foldabl detach come free pen2 full hd display hdmi port type c usb port lat one futur proof next years3 backlit keyboard must write poorli lit place times4 come free microsoft office5 small big write lot articl figur 14 inch screen right me6 without graphic card cut weight price dont video game editing7 reput brand8 price less 50kso hp pavilion x360 14cd0077tu model match requir amazon pay cashback cost 46k valu money come free offic 2016initi slow watch youtub video improv perform pretti fast appli tricksth low point low batteri life give 3 hour high perform set chose low perform set may get 4 hour think okay dont get everyth price point 10 day realli happi fargo requir similar mine addit give cool look other 2 1 touch screen gadget display \n Positive 256 laptop laptop tablet degree foldable detachable free pen2 full hd display hdmi port type c usb port lat one future proof next few years)3 keyboard places times4 free microsoft office5 small big lot articles inch screen me6 graphic card weight price video games editing).7 reputed brand8 price less hp pavilion x360 model requirements amazon pay cashback 46k value money free office slow few youtube videos performance only low point low battery life hours high performance settings low performance settings hours okay price point days more happy far.go requirements similar mine addition cool look others touch screen gadget display
1886 With premium fit and finish to go with all the features mentioned, this model is a good combination of both form and functionality. The only grouse was that there was some lag initially while booting up, but that seems to have gone away on its own now. Also, it's only been a few weeks since I've been using it, so I can't speak for its durability. This particular piece is a replacement piece - the original one that was delivered refused to start! So am a little worried - my experience with HP products has been great in the past, so let's hope this one also continues to reinforce that.Also, Get 10% cb and 6 months extended warranty by ordering through wplov .in/63\n premium fit finish go featur mention model good combin form function grous lag initi boot seem gone away also week sinc ive use cant speak durabl particular piec replac piec origin one deliv refus start littl worri experi hp product great past let hope one also continu reinforc thatalso get 10 cb 6 month extend warranti order wplov in63\n Positive 123 premium fit features model good combination form functionality only grouse lag own few weeks durability particular piece replacement piece original one little worried experience hp products great past one % cb months warranty wplov
1887 I bought this product in a hurry during Diwali time and I regret almost daily. Below are a few but most critical issues I have faced ever since I bought this laptop1) Extremely slow and loading takes hell lot of time2) Though manual update is enabled system goes for auto windows update in every 2 days time. Updates runs for 6/7 hours which means you never get time to use the laptop3) No matter how many times you run shut down command the laptop continues to be on unless you physically shut it down4) can't even open 4 Window tabs simultaneously as it crashes5) Overall nice looking fancy gadget without any practical utilities..Extremely disappointing and hope I can get it replaced.\n bought product hurri diwali time regret almost daili critic issu face ever sinc bought laptop1 extrem slow load take hell lot time2 though manual updat enabl system goe auto window updat everi 2 day time updat run 67 hour mean never get time use laptop3 matter mani time run shut command laptop continu unless physic shut down4 cant even open 4 window tab simultan crashes5 overal nice look fanci gadget without practic utilitiesextrem disappoint hope get replaced\n Negative 121 product hurry diwali time few critical issues laptop1 slow loading hell lot time2 manual update system auto windows days time updates hours time laptop3 many times command laptop window tabs nice fancy gadget practical utilities disappointing
1888 This laptop has an SSHD for boot up , so ideally it should be fast and smooth but sadly that is not at all the case , the apps crash and the laptop lags and becomes irresponsive as soon as you shift to tablet mode also it has a problem of over heating. All in all the performance is highly dissatisfactory. I have a Macbookpro that i bought in 2014 and even that works better than the new HP x360 that i got. Also , even after constant attempts Amazon has not yet helped me getting a refund or even a replacement for the product.\n thi laptop sshd boot ideal fast smooth sadli case app crash laptop lag becom irrespons soon shift tablet mode also problem heat perform highli dissatisfactori macbookpro bought 2014 even work better new hp x360 got also even constant attempt amazon yet help get refund even replac product\n Positive 105 laptop sshd boot fast smooth case apps crash laptop lags irresponsive tablet mode problem heating performance dissatisfactory macbookpro new hp x360 constant attempts amazon refund replacement product
1889 Bought it less than 10 days ago. Got a faulty product. Very slow and hanging always. Overheating too in 5 min. Very disappointed with HP and Amazon. Need replacement!\n bought less 10 day ago got faulti product slow hang alway overh 5 min disappoint hp amazon need replacement\n Negative 29 less days faulty product slow min disappointed hp amazon replacement
1890 Have been using this laptop for the last 3 months and the issues seem to never end. It looks good, feels good and there ends the matter. I am already facing issues with the audio, the company claims it to be a software update issue. The heat sink stopped working and it's been more than 15 days since the complaint has been raised yet they have to replace the part not sure of they are yet to manufacturer it. Pathetic after sales service. The laptop is slower than a P1 system. I would never recommend this product to anyone. Will update this review once the part is replaced to see if it improves the performance.\n use laptop last 3 month issu seem never end look good feel good end matter alreadi face issu audio compani claim softwar updat issu heat sink stop work 15 day sinc complaint rais yet replac part sure yet manufactur pathet sale servic laptop slower p1 system would never recommend product anyon updat review part replac see improv performance\n Negative 115 laptop last months issues good good matter issues audio company software update issue heat sink more days complaint part sure pathetic sales service laptop slower p1 system product review part performance
1891 This is an awesome laptop. It has premium look. And as some review mentioned it is a bit slow with 4 GB ram but once you upgrade it to 8GB it runs smoothly without any single lag. After RAM update even the boot time has changed noticeably. I have Adobe's light room, photoshop, illustrator and Skylum Luminar installed in this computer and everything works fine without any lag with 8 GB RAM update. The stylus along with it is not so useful for drawing in illustrator as it lacks accuracy but for regular uses and note taking this is enough. i3 8th gen has same processor speed as i5 (there are difference in cores). But most of the software doesn't actually utilises the cores efficiently. So this one is a cheaper option. Buy this laptop and update the RAM. If you can afford update the HDD to SDD and use the current 1TB HDD as an external hard disk. I am doing it and once you give this cute laptop it's deserving hard-disk and RAM it will surprise you.\n awesom laptop premium look review mention bit slow 4 gb ram upgrad 8gb run smoothli without singl lag ram updat even boot time chang notic adob light room photoshop illustr skylum luminar instal comput everyth work fine without lag 8 gb ram updat stylu along use draw illustr lack accuraci regular use note take enough i3 8th gen processor speed i5 differ core softwar doesnt actual utilis core effici one cheaper option buy laptop updat ram afford updat hdd sdd use current 1tb hdd extern hard disk give cute laptop deserv harddisk ram surpris you\n Positive 180 awesome laptop premium look review bit slow gb ram single lag ram update boot time adobe light room photoshop illustrator skylum luminar computer lag gb ram update stylus useful illustrator accuracy regular uses enough i3 8th gen same processor speed i5 difference cores most software cores one cheaper option laptop ram hdd current tb hdd external hard disk cute laptop hard disk
1892 I have purchased HP Pavilion x360 14 inch, What a fantastic machine it is! Screen touch, booting speed is really extra ordinary\n purchas hp pavilion x360 14 inch fantast machin screen touch boot speed realli extra ordinary\n Neutral 23 hp pavilion x360 inch fantastic machine screen touch speed ordinary
1893 Battery life won't even standby for 3 hours, the machine is super slow you can't open up more than four tabs in the browser. Any applications startup seems very slow very disappointed, deceived by the looks 😣\n batteri life wont even standbi 3 hour machin super slow cant open four tab browser applic startup seem slow disappoint deceiv look 😣\n Positive 37 battery life standby hours machine slow more tabs browser applications startup slow disappointed looks
1894 Serial No. on the invoice is different from the serial no printed on the machine and on the machine packing box. HP is unwilling to undertake return and exchange of a product with several faults which they admitted in writing they are going to replace but due to this fraudulent invoice they cannot. RAM is 2666 Hz inside machine whereas website specifies 2400, so I cant upgrade RAM. Speakers are faulty. HP Admits these faults and has given DOA for exchange approval but without invoice having proper serial no. it cannot. Dealer has definitely thus planned a fraud cleverly. Police Complaint is the only solution left, since Amazon helpline robots are speaking product cannot be returned to amazon.\n serial invoic differ serial print machin machin pack box hp unwil undertak return exchang product sever fault admit write go replac due fraudul invoic cannot ram 2666 hz insid machin wherea websit specifi 2400 cant upgrad ram speaker faulti hp admit fault given doa exchang approv without invoic proper serial cannot dealer definit thu plan fraud cleverli polic complaint solut left sinc amazon helplin robot speak product cannot return amazon\n Negative 118 serial invoice different serial machine machine packing box hp unwilling return exchange product several faults writing fraudulent invoice hz machine website ram speakers faulty hp faults doa exchange approval invoice proper serial dealer fraud police complaint only solution amazon helpline robots product amazon
1895 First of all, Great team work by the vendor and Amazon to deliver my laptop within 24 hours. Great and easy to set up. Pristine condition, Great sound, butter smooth touch screen response, nice back lit keyboard, absolutely silent processor and fan. Total Value for money....\n first great team work vendor amazon deliv laptop within 24 hour great easi set pristin condit great sound butter smooth touch screen respons nice back lit keyboard absolut silent processor fan total valu money\n Positive 49 great team work vendor amazon laptop hours great easy pristine condition great sound butter smooth touch screen response nice lit keyboard silent processor fan total value money
1896 Screen is very thin and not stable, you can't work in a moving vehicle or car.Worst laptop, not useful only fancy.\n screen thin stabl cant work move vehicl carworst laptop use fancy\n Neutral 21 screen thin stable vehicle car.worst laptop useful fancy
1897 The device arrived in just 2 days. So good delivery time. The startup was smooth and the pen provided works nicely. The touch was a bit awry(it just worked in bottom right of screen and didn't recognize touch on rest of the screen) the first time but after installing the BIOS update from the hp support manager application, this also gives you the warranty for the device, everything works smooth. The performance is good for standard home use. The ddr4 2400mhz ram does speed things up. The Hard drive is a sshd so boot times are fast.The problem with the windows 10 is bloat ware. I would suggest disabling the needless background services and advertising and suggestion features also Cortana. They typically start to eat away at the disk usage and processor usage.The processor itself handles things pretty well. I tried the pen with krita a drawing program. It worked fine. Just fine. It has pressure sensitivity, and the input lag is ok. However for serious drawing I would prefer something else. Even so this device has good pen support. Just enable the "disable touch when using pen" feature in windows 10 setting. That should prevent any spurious touch input.For internet I prefer Mozilla because it is a little less ram intensive than chrome. So everything works aptly fast.However don't expect to run games smoothly as the video ram is shared. Even though it can handle simple games like asphalt 8 from Microsoft store well enough.The added benefit is the office 2016 home & student.You get word, Excel, PowerPoint, and OneNote. All work smoothly and without any lag.All in all, a good device for daily usage. Battery lasts around 6 to 7 hours with internet usage and background programs running. With brightness set to around 40 percent.\n devic arriv 2 day good deliveri time startup smooth pen provid work nice touch bit awryit work bottom right screen didnt recogn touch rest screen first time instal bio updat hp support manag applic also give warranti devic everyth work smooth perform good standard home use ddr4 2400mhz ram speed thing hard drive sshd boot time fastth problem window 10 bloat ware would suggest disabl needless background servic advertis suggest featur also cortana typic start eat away disk usag processor usageth processor handl thing pretti well tri pen krita draw program work fine fine pressur sensit input lag ok howev seriou draw would prefer someth els even devic good pen support enabl disabl touch use pen featur window 10 set prevent spuriou touch inputfor internet prefer mozilla littl less ram intens chrome everyth work aptli fasthowev dont expect run game smoothli video ram share even though handl simpl game like asphalt 8 microsoft store well enoughth ad benefit offic 2016 home studenty get word excel powerpoint onenot work smoothli without lagal good devic daili usag batteri last around 6 7 hour internet usag background program run bright set around 40 percent\n Positive 299 device days good delivery time startup smooth pen works touch bit awry(it bottom screen touch rest screen first time bios hp support manager application warranty device works performance good standard home use ddr4 ram things hard drive sshd boot times fast.the problem windows bloat ware needless background services advertising suggestion features disk usage processor processor things pen krita program pressure sensitivity input lag ok serious drawing device good pen support disable touch pen feature windows setting spurious touch input.for internet mozilla little ram intensive chrome fast.however games video ram simple games asphalt microsoft store benefit office home word excel powerpoint onenote lag.all good device daily usage battery hours internet usage background programs brightness percent
1898 Battery life, touch screen is good. Laptop is light weight. Speed is not good. Further, after purchasing, customer should ensure warranty activation date. As I got laptop whose warranty was already activated one months back. Further, manufacturer offer to end user are also not provided to end user customer by the seller.\n batteri life touch screen good laptop light weight speed good purchas custom ensur warranti activ date got laptop whose warranti alreadi activ one month back manufactur offer end user also provid end user custom seller\n Positive 52 battery life touch screen good laptop light weight speed good purchasing customer warranty activation date laptop warranty months manufacturer offer end user user customer seller
1899 Hard disk crashSpeaker not waking wellHeating problemNow this black bar is coming this timeHow many time should I make my product to repairI want a serious action regarding my product\n hard disk crashspeak wake wellheat problemnow black bar come timehow mani time make product repairi want seriou action regard product\n Neutral 30 hard disk crashspeaker problemnow black bar timehow many time product serious action product
1900 Thanks to Amazon team for the excellent product from HP and also giving very good value for the old laptop and it was delivered completely updated with the confirmed softwares\n thank amazon team excel product hp also give good valu old laptop deliv complet updat confirm softwares\n Positive 30 thanks amazon team excellent product hp good value old laptop softwares
1901 Since I purchased this laptop, I am facing huge issue with slowness of any application and its very frustration. The WiFi disconnects very often and need to be enabled it manually as it doesn't restore on its own. Within few months of purchase, I had to go service centre for this issue and still the problem persists. Not worth ..\n sinc purchas laptop face huge issu slow applic frustrat wifi disconnect often need enabl manual doesnt restor within month purchas go servic centr issu still problem persist worth \n Positive 62 laptop huge issue slowness application very frustration wifi own few months purchase service centre issue problem worth
1902 Light weightCompactStylishHave Touch screenSpeed is OK for normal usageComes with Office 2016 ( but need to register in microsoft website for activation within in a week)As a whole Satisfied with the purchase for Rs.46500 during freedom sale offer.\n light weightcompactstylishhav touch screenspe ok normal usagecom offic 2016 need regist microsoft websit activ within weeka whole satisfi purchas rs46500 freedom sale offer\n Positive 38 light weightcompactstylishhave touch screenspeed ok normal usagecomes office microsoft website activation week)as whole satisfied purchase rs.46500 freedom sale offer
1903 Overall for handling and look wise, it is great. But in just two weeks, the earphone socket and speaker stopped working. Now I have this laptop where speaker is not working. Amazing naa!!. Spent Rs 50000/- and got a dabba where I cant watch anything on youtube, movies and music. I am a fan of DELL, this time I thought to try HP, and really disappointed. I will recommend not to buy HP laptops.\n overal handl look wise great two week earphon socket speaker stop work laptop speaker work amaz naa spent rs 50000 got dabba cant watch anyth youtub movi music fan dell time thought tri hp realli disappoint recommend buy hp laptops\n Positive 74 handling wise great weeks earphone socket speaker laptop speaker amazing naa rs dabba youtube movies music fan dell time hp disappointed hp laptops
1904 This laptop serves the purpose. Don’t expect too much. It’s not as slow as mentioned in other reviews. I am using another i7 7th gen 8gb SSD elitebook laptop and I must agree, I see no difference. Battery life is max 3.5 hours in medium brightness. Touch sensitivity is good. Weight is average. The stylus is a plus when you need real drawings. Sound quality is just up to the mark.\n laptop serv purpos don’t expect much it’ slow mention review use anoth i7 7th gen 8gb ssd elitebook laptop must agre see differ batteri life max 35 hour medium bright touch sensit good weight averag stylu plu need real draw sound qualiti mark\n Positive 71 laptop purpose don t much slow other reviews i7 7th gen gb ssd elitebook laptop difference battery life max hours medium brightness touch sensitivity good weight average stylus plus real drawings sound quality mark
1905 Laptop is stylish but Microsoft application not workingWhen I called to Amazon people they said you have to purchase the Microsoft even the invoice and laptop mentioned that laptop include window 10And Amazon people even not help in replace the productJust waste of money and waste of time\n laptop stylish microsoft applic workingwhen call amazon peopl said purchas microsoft even invoic laptop mention laptop includ window 10and amazon peopl even help replac productjust wast money wast time\n Positive 48 laptop stylish microsoft application workingwhen people microsoft invoice laptop laptop window 10and amazon people productjust waste money waste time
1906 Hp pavilion x360 very slow and not even respond screen turn black and edge screen is blinking while turning it into 360 degrees over all very unsatisfactory product I won’t recommend it\n hp pavilion x360 slow even respond screen turn black edg screen blink turn 360 degre unsatisfactori product won’t recommend it\n Positive 32 hp pavilion x360 slow screen black edge screen degrees unsatisfactory product t
1907 Purchased the laptop 1 month ago. So far:Good/Impressives:1.) Great experience with the system. No hang, or slowness in performance2.) Soft keyboard with broader keys, helps elderly and the young. The key press is very smooth and almost silent.3.) The touch screen is very fast and responsive and you can use it freely without hiccups.4.) The battery life is decent with a full charge lasting about 4.5 hrs. Charging is also quite fast and usually charges in about 1.5 hrs to a decent level.5.) As it is a HDD system, it does take a little time to boot.6.) Look and finish is quite decent and also received a few words of appreciation on my selection ! :)7.) Comes with the digital Window Ink Pen, which is also quite impressive with its performance. You can use it in multiple ways, to sketch, make sticky notes and reminder, etc.8.) It is a dual core system and the processing is quite decent, though the system struggles with a large data set, macros, etc.9.) Has a 1 TB HDD storage which is quite huge and you can store loads of your data. Word of caution: Do have the habit of backing up the data, as if the system goes down, you might land up losing a god amount of data.Less Impressive:1.) This is a Win 10 system, and so could have done with a 8GB RAM. A 4GB RAM, may not last long and so might sound a little less impressive for the price.2.) Having a touchscreen option, I am not sure if the screen is scratch resistant or not. Could not find much details on it even on the internet.3.) System is a dual core, and so processing slows down for medium to larger data set, or macros.4.) The laptop could have made good with some more connectivity options as it does not have an Optical Disc Drive. There are only 2 USB ports (Though 1 is a USB 3.1 port), 1 HDMI port, 1 Gen 2 Type C port. This makes the user purchase an external multi connectivity Type C adapter, costing about Rs. 8000/-5.) The laptop has a dedicated volume control on the right side. This is a laptop and the available volume control keys very well serve the purpose. The Additional Volume keys seem redundant. Instead, a finger print sensor could have add more value to the product for the price and could have become a much stronger product pitch.Apart from this there is the standard 1 year domestic warranty for manufacturing defects/deficiencies.Conclusion: Overall, the product is quite decent purchase, but given to the lack of a finger print sensor, it gives users way to check out other options like Lenovo, Asus, etc. If you are not a very strong user of laptops or if you have very less amount of technical, coding stuff to do, then, this can be a good choice to go with.Thanks and hope this is helpful\n purchas laptop 1 month ago fargoodimpressives1 great experi system hang slow performance2 soft keyboard broader key help elderli young key press smooth almost silent3 touch screen fast respons use freeli without hiccups4 batteri life decent full charg last 45 hr charg also quit fast usual charg 15 hr decent level5 hdd system take littl time boot6 look finish quit decent also receiv word appreci select 7 come digit window ink pen also quit impress perform use multipl way sketch make sticki note remind etc8 dual core system process quit decent though system struggl larg data set macro etc9 1 tb hdd storag quit huge store load data word caution habit back data system goe might land lose god amount dataless impressive1 win 10 system could done 8gb ram 4gb ram may last long might sound littl less impress price2 touchscreen option sure screen scratch resist could find much detail even internet3 system dual core process slow medium larger data set macros4 laptop could made good connect option optic disc drive 2 usb port though 1 usb 31 port 1 hdmi port 1 gen 2 type c port make user purchas extern multi connect type c adapt cost rs 80005 laptop dedic volum control right side laptop avail volum control key well serv purpos addit volum key seem redund instead finger print sensor could add valu product price could becom much stronger product pitchapart standard 1 year domest warranti manufactur defectsdeficienciesconclus overal product quit decent purchas given lack finger print sensor give user way check option like lenovo asu etc strong user laptop less amount technic code stuff good choic go withthank hope helpful\n Positive 490 laptop month good impressives:1 great experience system hang slowness performance2 soft keyboard broader keys elderly young key press smooth silent.3 touch screen fast responsive hiccups.4 battery life decent full charge hrs fast hrs decent level.5 hdd system little time boot.6 finish decent few words appreciation selection digital window ink pen impressive performance multiple ways sticky notes reminder etc.8 dual core system processing decent system large data set macros etc.9 tb hdd storage huge loads data word caution habit data system god amount data.less impressive:1 win system gb ram gb ram little impressive price.2 touchscreen option sure screen scratch resistant much details internet.3 system dual core medium larger data macros.4 laptop good more connectivity options optical disc drive usb ports usb port hdmi port gen type c port user external multi connectivity type c adapter rs laptop dedicated volume control right side laptop available volume control keys purpose additional volume keys redundant finger print sensor more value product price stronger product pitch.apart standard year domestic warranty defects deficiencies.conclusion product decent purchase lack finger print sensor users way other options lenovo asus strong user laptops less amount technical stuff good choice with.thanks helpful
1908 Writing review after around 1 year usage:- Very very slow performance, I added 8GB additional RAM helped to improve the performance to little better.- Touch is not consistent, cursor jumps from one place to another without any user action.- Display screen is detaching from lid: As we open the Lid holding right top corner, left down corner display is coming out.- System Restarts: I have a Smart watch that has a charger with Magnet internally, once I brought it closer to laptop to connect the USB Port. System Restarted.Not worth for this money, HP should improve their quality. I some other use cases (too technical to explain it here) where this system is failing.\n write review around 1 year usag slow perform ad 8gb addit ram help improv perform littl better touch consist cursor jump one place anoth without user action display screen detach lid open lid hold right top corner left corner display come system restart smart watch charger magnet intern brought closer laptop connect usb port system restartednot worth money hp improv qualiti use case technic explain system failing\n Positive 115 review year slow performance gb additional ram performance little better.- touch consistent cursor place user action.- display screen lid lid right top corner corner display out.- system smart watch charger magnet usb port system restarted.not worth money hp quality other use cases technical system
1909 The Laptop look is very good. Touchscreen and all other features are elegant. BUT THE LAPTOP IS HORRIBLY SLOW. Shedding out 50000 for such a slow LAPTOP is awful. I still have one Compaq Presario CQ40 8 yrs OLD... which is 100 times faster than this laptop. I use MAC Air, which is Undoubtedly the superfast of the lot...ONLY NEGATIVE SIDE OF THIS LAPTOP is that THIS is AWFULLY SLOW... I work very fast. Feeling like returning the same. BUT NO OPTIONS. Feeling like trapped now.\n laptop look good touchscreen featur eleg laptop horribl slow shed 50000 slow laptop aw still one compaq presario cq40 8 yr old 100 time faster laptop use mac air undoubtedli superfast lotonli neg side laptop aw slow work fast feel like return option feel like trap now\n Positive 86 laptop look good other features elegant laptop slow slow laptop awful compaq presario cq40 yrs old times faster laptop mac air superfast lot negative side laptop slow same options
1910 I bought this mainly for my travel and trek tours. To manage my finances and investment and communication when on travel.Great product but a little slow. Did not bother me much because I do not use it to play video games. Moreover it comes with Windows 10, Basic Office, tablet mode and touch screen.I reduced a star because it is bit slow. If HP has any suggestions to make it faster like even adding additional hardware, I would be happy to do it.\n bought mainli travel trek tour manag financ invest commun travelgreat product littl slow bother much use play video game moreov come window 10 basic offic tablet mode touch screeni reduc star bit slow hp suggest make faster like even ad addit hardwar would happi it\n Positive 83 travel trek tours finances investment communication travel.great product little slow much video games windows basic office tablet mode touch screen.i star bit slow hp suggestions additional hardware happy
1911 A lot of glitches! The screen freezes a lot. It stops sensing the touch no matter how much you try! Demands 'Restart' over and over again. Waste of money! And really pathetic battery performance... It goes 30 to 21 within 10 minutes!!!\n lot glitch screen freez lot stop sens touch matter much tri demand restart wast money realli pathet batteri perform goe 30 21 within 10 minutes\n Negative 42 lot glitches screen lot touch much demands restart waste money pathetic battery performance minutes
1912 This is a very slow laptop - will test your patience and ive already lost my patience few times. Takes a while to load, runs some sort of covert operation in the backend all the time consuming the entire 4GB of ram.Keyboard too has stopped functioning smoothly, requiring one to key in multiple timesFancy looking and serves no practical use!\n slow laptop test patienc ive alreadi lost patienc time take load run sort covert oper backend time consum entir 4gb ramkeyboard stop function smoothli requir one key multipl timesf look serv practic use\n Negative 60 slow laptop patience patience few times while sort covert operation backend time entire gb ram.keyboard key multiple timesfancy practical use
1913 I bought this laptop many months back. There are so many pros for this laptop like lightweight machine, touchscreen, Genuine OS and Office, build quality, SSHD(Remember..its not SSD). The performance of the laptop was just average until i upgraded this laptop with an additional 4GB RAM (Kingston) and 250GB SSD(Samsung EVO860). The performance of the laptop improved drastically thereafter.\n bought laptop mani month back mani pro laptop like lightweight machin touchscreen genuin os offic build qualiti sshdrememberit ssd perform laptop averag upgrad laptop addit 4gb ram kingston 250gb ssdsamsung evo860 perform laptop improv drastic thereafter\n Positive 59 laptop many months many pros laptop lightweight machine touchscreen genuine os office quality ssd performance laptop average laptop additional gb ram kingston gb ssd(samsung evo860 performance laptop
1914 Laptop was really nice. No hanging no lagging or anything. At first instance I hesitated to buy the product through online but after I bought it I was fully satisfied it is really awesome. Packing was great and ontime delivery. One small thing I didn't like is inking pen it is normal not up to the mark. Rest everything is perfect.\n laptop realli nice hang lag anyth first instanc hesit buy product onlin bought fulli satisfi realli awesom pack great ontim deliveri one small thing didnt like ink pen normal mark rest everyth perfect\n Positive 61 laptop nice lagging first instance product satisfied awesome packing great ontime delivery small thing pen normal mark perfect
1915 The product is good so far but had major issues with Wifi on windows 10. The Wi-Fi would disconnect very frequently and I tried multiple options as per windows 10 support website but none of them worked. finally I went to HP website and they suggested to reinstall windows and that’s what I did from within windows 10 setup on this laptop. and that solved the problem of Wi-Fi connectivity. But this cost me many weeks hope this feedback helps people\n product good far major issu wifi window 10 wifi would disconnect frequent tri multipl option per window 10 support websit none work final went hp websit suggest reinstal window that’ within window 10 setup laptop solv problem wifi connect cost mani week hope feedback help people\n Positive 82 product good major issues wifi windows wi fi multiple options windows support website none hp website windows windows setup laptop problem wi fi connectivity many weeks feedback people
1916 Worst product i ever used.It's been 16 days since I bought this and 3 time some technicians have come and done the troubleshooting. Yet even today I face same problems. Not even a single file (pdf, word, excel etc) or app will open in less than 3/4 mins. I have asked for a refund. But since Amazon doesn't deal with refunds I'm held up very badly with this. And they have assured to replace with new one without these issues.\n worst product ever usedit 16 day sinc bought 3 time technician come done troubleshoot yet even today face problem even singl file pdf word excel etc app open less 34 min ask refund sinc amazon doesnt deal refund im held badli assur replac new one without issues\n Negative 84 worst product used.it days time technicians troubleshooting today same problems single file pdf word excel app less mins refund amazon refunds new issues
1917 Pros:Stylish & TrendySmooth touch responseBrilliant screenCons:Bit slower (might be due to SSHDD)Poor Battery 🔋, only upto 2-3 hrs.No finger print sensor\n prosstylish trendysmooth touch responsebrilli screenconsbit slower might due sshddpoor batteri 🔋 upto 23 hrsno finger print sensor\n Neutral 21 pros stylish trendysmooth touch responsebrilliant screencons bit due sshdd)poor battery upto hrs.no finger print sensor
1918 I wish to give a zero star! This looks to be refurbished one or rejected one from HP factory. I cannot do anything for first 10 ten minutes from switching on, HP is reluctant to attend to the issues, ultimately buyers are fooled. Amazon, the seller and HP has done a great job.\n wish give zero star look refurbish one reject one hp factori cannot anyth first 10 ten minut switch hp reluct attend issu ultim buyer fool amazon seller hp done great job\n Positive 53 star hp factory first minutes hp reluctant issues buyers amazon seller hp great job
1919 We had received a defective piece. By the time the complaint raised was resolved online, the return period expired. We had to then take it to a service centre. There was problem with the screen, the touchscreen didn’t work. The issue was resolved, but it was an altogether bad experience. Just learnt a valuable lesson - do not buy such costly products online as you may be handed a defective piece.\n receiv defect piec time complaint rais resolv onlin return period expir take servic centr problem screen touchscreen didn’t work issu resolv altogeth bad experi learnt valuabl lesson buy costli product onlin may hand defect piece\n Negative 71 defective piece time complaint return period service centre problem screen touchscreen didn t work issue bad experience valuable lesson such costly products defective piece
1920 This is okay. Not great. Go for a better variant which can be faster. I3 and 4 gb Ram, not worth it.\n okay great go better variant faster i3 4 gb ram worth it\n Positive 22 okay great better variant faster i3 gb ram worth
1921 High price for SSHD..! I thought it was SSD alone..! Heats up after 10 minutes of use and fan sound becomes heavy..! I tried to work on some Mechanical CAD Design softwares the performance was very poor..! The system is way too slow, may be an issue with 100% disk usage. But HP and windows 10 is a deadly combination. You don't want to buy this. Only advantage is its portability.Update after six months of use: Keyboard back light went off while using and never turned on again. Quality is very poor. Also I bought it on Jan 2019, but the warranty shown is from August 2018. I guess the seller Appario Ltd sold a poor quality laptop which was returned by someone or some renewed product. I was initially suspicious about their low quality packaging. There was no company cover for this product. I suggest not to buy this kind of costly electronics online as they can fraud you easily. We never know whether its new or renewed.\n high price sshd thought ssd alon heat 10 minut use fan sound becom heavi tri work mechan cad design softwar perform poor system way slow may issu 100 disk usag hp window 10 deadli combin dont want buy advantag portabilityupd six month use keyboard back light went use never turn qualiti poor also bought jan 2019 warranti shown august 2018 guess seller appario ltd sold poor qualiti laptop return someon renew product initi suspici low qualiti packag compani cover product suggest buy kind costli electron onlin fraud easili never know whether new renewed\n Negative 169 high price sshd ssd minutes use fan sound heavy mechanical cad design performance poor system slow issue % disk usage hp windows deadly combination advantage portability.update months use light quality poor jan warranty august seller appario ltd poor quality laptop product suspicious low quality packaging company cover product kind costly electronics new
1922 I bought this product on 5th May 2019 as a gift and after opening the package and getting all the updates done, the laptop was very slow to open a simple word doc or any other applications, there was not even programmes installed but still the machine was slow. I had 10days to return the product but since it was a gift for my wife I was not using this machine and the 10 day period passed by, afterwards I contacted Amazon and they said I cant return the laptopn as the 10 days period has passed but they can replace the machine (which they did) and the same problem persists but I cant to do anything about it so its lying on my table gathering dust (I did order a sleeve so dust is not gathering), secondly the warranty was suppose to be for 12 months but when I registered it on HP website it said 8 months, I tried contacting HP and they reverted back by saying they will fix it but that has not changed now its says 7 months warranty remains. Even the amazon tech guy who visited my place said this model has the problem of lagging and it cant be fixed. Very disappointed with this HP product esp. since all my other laptops and printer are HP.\n bought product 5th may 2019 gift open packag get updat done laptop slow open simpl word doc applic even programm instal still machin slow 10day return product sinc gift wife use machin 10 day period pass afterward contact amazon said cant return laptopn 10 day period pass replac machin problem persist cant anyth lie tabl gather dust order sleev dust gather secondli warranti suppos 12 month regist hp websit said 8 month tri contact hp revert back say fix chang say 7 month warranti remain even amazon tech guy visit place said model problem lag cant fix disappoint hp product esp sinc laptop printer hp\n Positive 223 product 5th may gift package updates laptop slow simple word other applications programmes machine slow 10days product gift wife machine day period amazon laptopn days period machine same problem lying table dust sleeve dust warranty months hp website months hp months warranty amazon tech guy place model problem disappointed hp product other laptops printer hp
1923 Pathetic is the best word to describe the product. I don't understand how HP sells such laptops. Its as good as a paperweight as you can't do anything much other than that. You can't open a single application or a file / photo as it takes forever to do any of this. It looks like the i3 processor and 4gb memory is grossly insufficient for this OS. Even start menu doesn't open (if you click on windows logo on the left corner of task bar absolutely nothing happens. It doesn't open with dedicated windows key on keyboard too). So you simply can't shutdown and the only way to do is to long press the power button and do a force shutdown. Then why is HP selling such laptops shooting on its own foot. Looks like it is only to have lower priced laptops in highly competitive market place where there are second rank players who give better configured laptops at same price point. All those who think brand means quality, this is a wake up call to not be so naive any longer. Those good old days have gone and today what matters is how you can make money and you can do ANYTHING to achieve that.\n pathet best word describ product dont understand hp sell laptop good paperweight cant anyth much cant open singl applic file photo take forev look like i3 processor 4gb memori grossli insuffici os even start menu doesnt open click window logo left corner task bar absolut noth happen doesnt open dedic window key keyboard simpli cant shutdown way long press power button forc shutdown hp sell laptop shoot foot look like lower price laptop highli competit market place second rank player give better configur laptop price point think brand mean qualiti wake call naiv longer good old day gone today matter make money anyth achiev that\n Positive 207 pathetic best word product hp such laptops good paperweight other single application file photo i3 processor gb memory insufficient os menu windows logo left corner task bar dedicated windows key keyboard only way long power button force shutdown hp such laptops own foot laptops competitive market place second rank players laptops same price point brand quality wake call naive good old days today money
1924 Laptop look is very good but it's lagging when I am running you tube videos and it's taking time approx 1 minute to open Google chrome properly. So that I want to replace this item now.\n laptop look good lag run tube video take time approx 1 minut open googl chrome properli want replac item now\n Positive 36 laptop look good videos time minute google chrome item
1925 Okay so I’ll be very honest with my review! Note: This is my personal experience wanted to write about this product for future buyers!Got pavilion 360 i3 1tb ddr4 , Wanted a good laptop for my niece, basically for a school kid. this is a beautiful looking laptop amazing screen display and the ‘360’ thing! Now what all I disliked about this product is this processor is not recommended for people who wish to do multitasking. IT IS A SLOW LAPTOP! it lags. YES IT DOES. I’ll be harsh at this point. I hope my comment amazon does not delete! But literally taking my time out and writing this for you guys ,wanted to share with someone out there who is willing to spend that much amount On a device. You can’t do heavy softwares easily on this device (eg photoshop,illustrator). It will work brilliant AGAIN BRILLIANT if you’re just looking for web browsing, watching movies, Netflix, documenting, making presentations etc.Battery life is good.Touchscreen is also good. Responsive. Sometimes lags when you fold the device. Brightness to a certain level there is. Not too bright!I was disappointed with the glitches it gives when you fold the laptop and it asks for tablet mode and suddenly it gets confused and gives glitches with the keyboard not closing. Also NOT good for sketching! Says it won’t take your palm’s touch while drawing but it does and clicks everywhere. Also not take this review that serious this is my personal review! GO TO A SHOWROOM FIRST CHROMA OR ANY OUTLET see first what the product has to offer then buy it. AND OH WAIT, THE PRODUCT CAME NICELY PACKED THANKYOU AMAZON YOU’RE LOVE. So this is What I didn’t like about it! And I think it had to be because I use MacBook with the buttery smooth workflow! God Apple has ruined lives. I think at her age. She’s in 9th standard. This will totally benefit her. and is a very good laptop for that purpose. But not recommended for heavy users. They can go For an i5 or i7. If not chuck everything and buy apple! THE MOST BEAUTIFUL THING DESIGNED from every aspect!\n okay i’ll honest review note person experi want write product futur buyersgot pavilion 360 i3 1tb ddr4 want good laptop niec basic school kid beauti look laptop amaz screen display ‘360’ thing dislik product processor recommend peopl wish multitask slow laptop lag ye i’ll harsh point hope comment amazon delet liter take time write guy want share someon will spend much amount devic can’t heavi softwar easili devic eg photoshopillustr work brilliant brilliant you’r look web brows watch movi netflix document make present etcbatteri life goodtouchscreen also good respons sometim lag fold devic bright certain level brighti disappoint glitch give fold laptop ask tablet mode suddenli get confus give glitch keyboard close also good sketch say won’t take palm’ touch draw click everywher also take review seriou person review go showroom first chroma outlet see first product offer buy oh wait product came nice pack thankyou amazon you’r love didn’t like think use macbook butteri smooth workflow god appl ruin live think age she’ 9th standard total benefit good laptop purpos recommend heavi user go i5 i7 chuck everyth buy appl beauti thing design everi aspect\n Positive 364 honest review personal experience product future pavilion i3 tb ddr4 good laptop niece school kid beautiful looking laptop amazing screen display thing product processor people multitasking slow laptop harsh point comment amazon time guys willing much amount device heavy softwares device eg photoshop illustrator brilliant brilliant web browsing movies netflix presentations etc.battery life good.touchscreen good responsive device brightness certain level bright!i disappointed glitches laptop tablet mode confused glitches keyboard good sketching t palm touch review serious personal review showroom first chroma outlet product product thankyou amazon love t macbook buttery smooth workflow god apple lives age 9th standard good laptop purpose heavy users i5 i7 apple beautiful thing aspect
1926 Hi! I've ordered a laptop and I appreciate the timely delivery of the product. But It's been just 2 months since I got the laptop and sometimes it hangs and for the past few weeks its showing a blue screen error and the frequency is higher. I'm really disappointed with this and I would like to return this or replace this with some other laptop.\n hi ive order laptop appreci time deliveri product 2 month sinc got laptop sometim hang past week show blue screen error frequenc higher im realli disappoint would like return replac laptop\n Negative 65 laptop timely delivery product months laptop past few weeks blue screen error frequency higher disappointed other laptop
1927 Looks and feels premiumVery nice display. Crisp and sharpTouch screen performance is not great, just aceptableBut considering the price tag as well as the Hybrid SSD the boot up and shut down take agesI will recommend that you do not buy this from amazon and rather buy it from a reliable store.They sold a faulty laptop to me and do not have the necessary technical know how to address the problem.If you are ready to spend an hour a day repeating the same issue to customer care executives only to receive empty promises for more than 2 weeks then please go for amazonPS : They do replace the product after 3 weeks\n look feel premiumveri nice display crisp sharptouch screen perform great aceptablebut consid price tag well hybrid ssd boot shut take agesi recommend buy amazon rather buy reliabl storethey sold faulti laptop necessari technic know address problemif readi spend hour day repeat issu custom care execut receiv empti promis 2 week pleas go amazonp replac product 3 weeks\n Positive 112 premiumvery nice display crisp sharptouch screen performance great aceptablebut price tag hybrid ssd boot agesi amazon reliable store.they faulty laptop necessary technical problem.if ready hour day same issue customer care executives empty promises more weeks amazonps product weeks
1928 I get my lapi in 1one day delivery. Look was awesome. Some times it's performance was slow .In specs I saw 8gb ram,but they 4gb ram.They said 8gb nand flash memory for fast boot of laptop.\n get lapi 1one day deliveri look awesom time perform slow spec saw 8gb rambut 4gb ramthey said 8gb nand flash memori fast boot laptop\n Neutral 36 lapi day delivery awesome times performance slow specs gb ram ram.they gb nand flash memory fast boot laptop
1929 Speakers are not working - i came to update the whole lapy again - inbuilt audio not working - tried with everything - update also done.. but still speaker not working.\n speaker work came updat whole lapi inbuilt audio work tri everyth updat also done still speaker working\n Neutral 31 speakers whole lapy inbuilt audio update speaker
1930 Very poor product. Hangs very often. Even when I am working on light applications, the system hangs. Can't use heavy apps, heats up very fast. Not recommended! Waste of money\n poor product hang often even work light applic system hang cant use heavi app heat fast recommend wast money\n Negative 30 poor product hangs light applications system heavy apps waste money
1931 please don't buy, this is one of the worst laptop I have ever seen.and don't call on hp support they put you on hold for 21 minutes anddisconnect the call. Still following up with the hp support for hardware they have changed the network cardand they want to change some network wire, waste of time and money. btw call support already did the reinstallationand hardware support again want to do that.\n pleas dont buy one worst laptop ever seenand dont call hp support put hold 21 minut anddisconnect call still follow hp support hardwar chang network cardand want chang network wire wast time money btw call support alreadi reinstallationand hardwar support want that\n Negative 71 worst laptop hp support hold minutes call hp support hardware network cardand network wire waste time money btw call support reinstallationand hardware support
1932 It’s a very nice laptop in this price range and i have been using it for 4 months now its super fast boot up and Sceen quality is superb,Audio is very crisp but little low on bass but overall I would highly recommend it but if you can spend a 10k more get the i-5 version that is much faster while multitasking and A better deal.\n it’ nice laptop price rang use 4 month super fast boot sceen qualiti superbaudio crisp littl low bass overal would highli recommend spend 10k get i5 version much faster multitask better deal\n Positive 66 nice laptop price range months fast boot sceen quality superb audio crisp little low bass 10k more i-5 version faster better deal
1933 Looks amazing, extremely light for laptops in the below 50k. Touch screen sensitivity can take some time to get use not as responsive as one would expect. Perfect for folks to are on the go and need a laptop handy.Overall great product.\n look amaz extrem light laptop 50k touch screen sensit take time get use respons one would expect perfect folk go need laptop handyoveral great product\n Positive 42 amazing light laptops below screen sensitivity time use responsive folks go laptop handy.overall great product
1934 I'm using this laptop from five months..Pros:1.Good looking2. Slim designCons:1. Slow Performance.2. Battery is draining in half an hour.3. No smooth interfaceFinal comments:NOT SATISFIED WITH THE PERFORMANCE\n im use laptop five monthspros1good looking2 slim designcons1 slow performance2 batteri drain half hour3 smooth interfacefin commentsnot satisfi performance\n Neutral 27 laptop months looking2 slim designcons:1 slow performance.2 battery hour.3 smooth interfacefinal comments satisfied performance
1935 Awesome! Just what a business person would need. Compact and powerful. Best in this price range. Go for it if and only if you require a touch screen lappy.\n awesom busi person would need compact power best price rang go requir touch screen lappy\n Positive 29 awesome business person compact powerful price range touch screen lappy
1936 I got problem with touch screen 10 days after getting delivery. I was not able to use laptop for 15 days because the cursor in the touch screen was moving continuously and not allowing to work. Finally after 3 weeks the HP technical support team changed the screen.\n got problem touch screen 10 day get deliveri abl use laptop 15 day cursor touch screen move continu allow work final 3 week hp technic support team chang screen\n Positive 51 problem touch screen days delivery able laptop days cursor touch screen work weeks hp technical support team screen
1937 Worst product ever made by HP\n worst product ever made hp\n Negative 6 worst product hp
1938 Look of laptop is fine, Super Slow laptop it is. I hope upgrading RAM will help me justfing the money I already spent in buying this tortoise.\n look laptop fine super slow laptop hope upgrad ram help justf money alreadi spent buy tortoise\n Positive 27 laptop fine slow laptop ram money tortoise
1939 This is a fantastic product. Works very well. Fast. Touchscreen is good too.I added 8gb more RAM. And now it's even better.\n fantast product work well fast touchscreen good tooi ad 8gb ram even better\n Positive 22 fantastic product touchscreen good more ram better
1940 It’s a genuine advice guys...I was deceived by laptops looks but it was totally an unworthy purchase. This laptop is totally useless and has hardware issues. Pls refrain from buying it.\n it’ genuin advic guysi deceiv laptop look total unworthi purchas laptop total useless hardwar issu pl refrain buy it\n Negative 31 genuine advice guys laptops unworthy purchase laptop useless hardware issues
1941 not at all satisfied,brand new laptop has heating problem and starts hanging once it is heated and the colours are also erratic eg: red shows as orange yellow as khaki and the hp help line no written on the laptop never connects,dont know what to do i regret buying this from amazon had i bought from a showroom my problem would have been addressed by now.\n satisfiedbrand new laptop heat problem start hang heat colour also errat eg red show orang yellow khaki hp help line written laptop never connectsdont know regret buy amazon bought showroom problem would address now\n Positive 67 satisfied brand new laptop heating problem colours erratic eg red shows orange yellow khaki hp help laptop dont amazon showroom problem
1942 Product is good not better not best. And not bad or worse. Just GOODvery SLOW.. Takes a long time to start/restart.Touch is also not that good. Had experience with Microsoft pro touch screen, which was wonderful..\n product good better best bad wors goodveri slow take long time startrestarttouch also good experi microsoft pro touch screen wonderful\n Positive 36 product good better best bad worse goodvery long time restart.touch good experience microsoft pro touch screen wonderful
1943 Am really disappointed... Its the third month am using it and it crashes or hangs at times.. Sometimes the K letter appears on the screen without my knowledge when typing on the word or when using the search engine.. And at times the mouse control pad and keyboard doesn't respond...\n realli disappoint third month use crash hang time sometim k letter appear screen without knowledg type word use search engin time mous control pad keyboard doesnt respond\n Negative 50 disappointed third month times k letter screen knowledge word search engine times mouse control pad keyboard
1944 This worked ok only for few days. After that it became very slow. After about 2 months it didn't switch on. On giving for warranty repair, mother board was replaced . Even after that it is not working properly. Don't know how to get the replacement\n work ok day becam slow 2 month didnt switch give warranti repair mother board replac even work properli dont know get replacement\n Positive 47 few days slow months warranty repair mother board replacement
1945 Best suited for my office needs and casual viewing with some graphic practices. Configuration is apt for normal usage with no lags or delays. Best points are 360 flexibility, superb touch and light weight.\n best suit offic need casual view graphic practic configur apt normal usag lag delay best point 360 flexibl superb touch light weight\n Positive 34 suited office needs casual viewing graphic practices configuration apt normal usage lags delays best points flexibility superb touch light weight
1946 Performance is very poor. It extremely slow that i feels like to break it.Completely dissapointed.Rest of the thing in look wise is good, but that does not matter because i did not order it for showpiece.Very poor performance.\n perform poor extrem slow feel like break itcomplet dissapointedrest thing look wise good matter order showpieceveri poor performance\n Positive 38 performance poor slow dissapointed.rest thing look wise good showpiece.very poor performance
1947 If i have no star rating I would give 0 to this product. Battery life normal it's light weight touch screen is fine but Amazon sends u already used products Kept the laptop with password by previous owner of it :-(\n star rate would give 0 product batteri life normal light weight touch screen fine amazon send u alreadi use product kept laptop password previou owner \n Positive 41 star rating product battery life normal light weight touch screen fine amazon u products laptop password previous owner
1948 Perfect two in one for my needs ! I love the use like a tablet while travelling ! And in my clinic it works like a laptop!\n perfect two one need love use like tablet travel clinic work like laptop\n Positive 27 needs use tablet clinic laptop
1949 Is this laptop or a 1985 machine... basic tasks it heats up, u can hear fan noise, hard disk is always at 100% utilization. i upgraded this laptop from default 4GB to 12 GB but still it sucks. please dont cheat customers!\n laptop 1985 machin basic task heat u hear fan nois hard disk alway 100 util upgrad laptop default 4gb 12 gb still suck pleas dont cheat customers\n Positive 43 laptop machine basic tasks fan noise hard disk % utilization laptop default gb customers
1950 Great purchase! Definitely a reliable product from HP. Smooth functionality of the product. I mainly purchase because of it's convertible feature which gives me practice to try out digital art. The stylus is too good and one can learn pressure techniques of Calligraphy through this for digital art.\n great purchas definit reliabl product hp smooth function product mainli purchas convert featur give practic tri digit art stylu good one learn pressur techniqu calligraphi digit art\n Positive 48 great purchase reliable product hp smooth functionality product convertible feature practice digital art stylus good pressure techniques calligraphy digital art
1951 Battery will exhaust very quickly, no where near to HP claimed time.\n batteri exhaust quickli near hp claim time\n Negative 12 battery near hp time
1952 1. Too heavy2. RAM is low 4GB makes it very very slow... Had to upgrade to 8 GB3. No warranty or online registration4. On off button not good.Overall not satisfied with purchase.\n 1 heavy2 ram low 4gb make slow upgrad 8 gb3 warranti onlin registration4 button goodoveral satisfi purchase\n Negative 32 ram low gb slow gb3 warranty online registration4 button good.overall satisfied purchase
1953 Gives too much noise near the fan. It's very slow, gets hang often. The most important issue is the product is heating on the top and bottom near fan and hard-disk. I feel like I bought a heater rather than buying a laptop.\n give much nois near fan slow get hang often import issu product heat top bottom near fan harddisk feel like bought heater rather buy laptop\n Positive 43 much noise fan slow important issue product top bottom fan hard disk heater laptop
1954 I BOUGHT THIS LAPTOP 3 MONTHS BEFORE AND NOW ITS SHOWING ITS TRUE COLOUR... ITS SO SLOW AND TAKES 5 MINS TO START UP. I DONT PLAY ANY GAMES JUST USE IT TO MAKE NOTES AND PRESENTATION BUT ITS STILL VERY SLOW SO IAM TELLING U GUYS PLEASE DONT BUY THIS PRODUCT ITS A WASTE OF MONEY ESP IN THIS BUDGET\n bought laptop 3 month show true colour slow take 5 min start dont play game use make note present still slow iam tell u guy pleas dont buy product wast money esp budget\n Positive 64 laptop months true colour slow mins games notes presentation slow iam u guys product waste money budget
1955 Very poor quality, unexpectedly slow. I curse myself for buying this garbage in half of lakh rupees.\n poor qualiti unexpectedli slow curs buy garbag half lakh rupees\n Negative 17 poor quality slow garbage half lakh rupees
1956 Hard disk crashed in a month. I used it barely for an hour each day.I'll be visiting the service centre soon. Let's see.I'll update more.\n hard disk crash month use bare hour dayil visit servic centr soon let seeill updat more\n Negative 25 hard disk month hour day.i'll service centre see.i'll
1957 So ,it has issue with graphics ,there is a lag in opening chrome browser with multiple tabs ..Even blank screen is observed if there is a hang .So ,not suitable for graphics.HT is disabled which can be enabled for gaming .Good touch screen and keyboard lit.\n issu graphic lag open chrome browser multipl tab even blank screen observ hang suitabl graphicsht disabl enabl game good touch screen keyboard lit\n Positive 46 issue graphics lag chrome browser multiple tabs blank screen hang .so suitable disabled touch screen keyboard lit
1958 This product is duplicate. It is frequently hanging and HP authorised showroom not ready to intervene as it is bought online. Call centeres for HP are pathetic too. They are unable to reach solve the issue and keep saying it is resolved every time I log the call.\n product duplic frequent hang hp authoris showroom readi interven bought onlin call center hp pathet unabl reach solv issu keep say resolv everi time log call\n Neutral 48 product duplicate hp showroom ready call centeres hp pathetic unable issue time call
1959 computer is very slow .\n comput slow \n Neutral 5 computer slow
1960 Features are not good as per the price. Battery backup is also not good. Only getting maximum around 2 hours on normal use in around 200 nits.\n featur good per price batteri backup also good get maximum around 2 hour normal use around 200 nits\n Positive 27 features good price battery backup good maximum hours normal use nits
1961 Just received the laptop, the look is great. Its quite early to tell something on its performance. The speed is good compare to other laptops. Lets see how it goes in coming weeks.\n receiv laptop look great quit earli tell someth perform speed good compar laptop let see goe come weeks\n Positive 33 laptop look great performance speed good compare other laptops lets weeks
1962 Battery life speakers and processing speed\n batteri life speaker process speed\n Neutral 6 battery life speakers processing speed
1963 Laptop performance is dead slow , even to open a excel sheet takes 5 minutes .4GB RAM for windows 10 is not compatible\n laptop perform dead slow even open excel sheet take 5 minut 4gb ram window 10 compatible\n Negative 23 laptop performance slow excel sheet minutes gb ram windows compatible
1964 1+ years owner review.Srceen quality is good and looks good but speed is too bad. Hanging always and need to wait to open next tab. Not good enough fast to use. Sometimes i am frustrated 😣.\n 1 year owner reviewsrceen qualiti good look good speed bad hang alway need wait open next tab good enough fast use sometim frustrat 😣\n Positive 36 + years owner review.srceen quality good good speed bad next tab good frustrated
1965 Product quality is superb. Backlite facilty is amazing ...10 out 10 . Thanks amazon.in deliver the product with in 36hrs. Particulary in this case im very much happy.\n product qualiti superb backlit facilti amaz 10 10 thank amazonin deliv product 36hr particulari case im much happy\n Positive 28 product quality superb backlite facilty amazing thanks product 36hrs particulary case happy
1966 Excellent product. Light weight, easy to handle but a relatively louder fan noise\n excel product light weight easi handl rel louder fan noise\n Positive 13 excellent product light weight easy louder fan noise
1967 Delivered the product on time as guaranteed by Amazon. Thanks a ton for that. And only Battery Life is below my expectation, however overall performance has considerably been good. I truly recommend this product for its best features.\n deliv product time guarante amazon thank ton batteri life expect howev overal perform consider good truli recommend product best features\n Positive 38 product time amazon thanks ton only battery life expectation overall performance good product best features
1968 The product Warranty and Manufactures warranty differs and neither Amazon nor seller willing to help to settle this and I strongly recommend not to buy this product\n product warranti manufactur warranti differ neither amazon seller will help settl strongli recommend buy product\n Positive 27 product warranty warranty differs amazon seller willing product
1969 Laptop for student is fine but we can't do editing stuff and can't game also forgot about Pubg it hangs a lot 4gb Ram is not sufficient u should definitely upgrade it but the laptop is Very slow i think its because of Windows update.\n laptop student fine cant edit stuff cant game also forgot pubg hang lot 4gb ram suffici u definit upgrad laptop slow think window update\n Positive 45 laptop student fine editing stuff pubg lot gb ram sufficient laptop slow windows
1970 Super slow .. my 12 year old laptop boots faster than this! Huge disappointment from HP.. Amazon return is v painful.. v v bad experience\n super slow 12 year old laptop boot faster huge disappoint hp amazon return v pain v v bad experience\n Negative 25 slow year old laptop boots huge disappointment hp amazon return v painful v v bad experience
1971 Nice product and happy. Of course, spent almost 15days reviewing all available options before purchasing it on amazon. So, got poduct exactly as I wanted.\n nice product happi cours spent almost 15day review avail option purchas amazon got poduct exactli wanted\n Positive 25 nice product happy available options amazon poduct
1972 Worst performance of rhe laptop. I request to return it on my first day itself. As it will take 5 6 seconds to open even Google chrome. Dont buy this guys.\n worst perform rhe laptop request return first day take 5 6 second open even googl chrome dont buy guys\n Negative 31 worst performance rhe laptop first day seconds google chrome guys
1973 Holy crap, wastage of money, dead slow.. Slower than a snail or sloth\n holi crap wastag money dead slow slower snail sloth\n Negative 13 holy crap wastage money dead slow slower snail sloth
1974 Super laptop, only the battery backup is not up to mark. My laptop is giving only 3 hrs backup. Touch is best\n super laptop batteri backup mark laptop give 3 hr backup touch best\n Positive 22 super laptop battery backup mark laptop hrs backup touch best
1975 Amazing laptop from hp to use for personal use..touch work very smooth & battery life is also good\n amaz laptop hp use person usetouch work smooth batteri life also good\n Positive 18 amazing laptop hp personal use touch work smooth battery life good
1976 The laptop acts very slow sometimes. It takes quite a time to complete some works. Overall its ok for me. Also I need to know how do I get the warranty on this product.\n laptop act slow sometim take quit time complet work overal ok also need know get warranti product\n Positive 34 laptop slow time works ok warranty product
1977 Overall nice laptop for daily use. Good speed - but screen is disappointment - not very bright - need to use it with 80% brightness setting\n overal nice laptop daili use good speed screen disappoint bright need use 80 bright setting\n Positive 26 overall nice laptop daily use good speed screen disappointment bright % brightness setting
1978 I think this is one of the finer windows laptops in the sub 50K range. It needs some basic optimization to make the laptop faster but overall a very solid buy. 8gb ram would be ideal but that can always be added later.\n think one finer window laptop sub 50k rang need basic optim make laptop faster overal solid buy 8gb ram would ideal alway ad later\n Positive 43 finer windows laptops sub 50k range basic optimization laptop solid buy gb ram ideal
1979 Overall product is good. Design and look is so cool. Friends are mad about the product.\n overal product good design look cool friend mad product\n Positive 16 overall product good design look cool friends mad product
1980 I got this laptop in this evening and it’s got hanged,I don’t no what to do\n got laptop even it’ got hangedi don’t do\n Neutral 16 laptop evening hanged t
1981 USB port and the charging port damaged its just a month that I brought\n usb port charg port damag month brought\n Neutral 14 usb port port month
1982 the processor is a bit slow sometimes and during multitasking the performance is very poor and gets struck very often. it is better to buy laptop which has high processor if you are looking forward to use it for work.\n processor bit slow sometim multitask perform poor get struck often better buy laptop high processor look forward use work\n Negative 40 processor bit slow performance poor better laptop high processor work
1983 What is a use of Laptop when you can not type on it. Keyboard is pathetic. I have been able to type this by pressing very hard on "H", "M" "T" "Y". Day by day keyboard is getting worse.\n use laptop type keyboard pathet abl type press hard h day day keyboard get worse\n Negative 39 use laptop keyboard pathetic able h m t y day day keyboard worse
1984 little slow in processing...other features are awesome...\n littl slow processingoth featur awesome\n Positive 7 little slow processing other features awesome
1985 The hard disk failed within one year. That too with very mild usage.Laptop keeps shutting down by itself.Very bad experience with HP.\n hard disk fail within one year mild usagelaptop keep shut itselfveri bad experi hp\n Negative 22 hard disk year mild usage.laptop itself.very bad experience hp
1986 It's very good laptop... It's working fine there is no issues with touch screen, battery life. It's getting heat while charging\n good laptop work fine issu touch screen batteri life get heat charging\n Positive 21 good laptop issues touch screen battery life heat
1987 This piece of crap has been with me for 3 days and if already malfunctioningI don't recommend buying it because it's going to be waste of money and frankly a waste of time\n piec crap 3 day alreadi malfunctioningi dont recommend buy go wast money frankli wast time\n Negative 33 piece crap days malfunctioningi waste money waste time
1988 Not worth purchase.. Hanging issues.. Processor slow.. Touch screen not good...you will have increase RAM and optimise processes to make it work decently\n worth purchas hang issu processor slow touch screen goodyou increas ram optimis process make work decently\n Positive 23 worth purchase issues processor slow touch screen good increase ram optimise processes
1989 Great screen quality or\n great screen qualiti or\n Positive 4 great screen quality
1990 Best laptop.... best part of 360 rotated and along with original window and activated Ms office for life time. But i am not sure battery back-up i think its 4 hours only\n best laptop best part 360 rotat along origin window activ ms offic life time sure batteri backup think 4 hour only\n Positive 32 best laptop best part original window ms office life time sure battery up hours
1991 This product is best! Only sometimes it takes time to start!\n product best sometim take time start\n Positive 11 product best time
1992 Supper supper student laptop bast for students and office use nice I like it 🌟🌟✌️✌️✌️✌️✌️👍👍👍👍👍👍☺️🙏💯\n supper supper student laptop bast student offic use nice like 🌟🌟✌️✌️✌️✌️✌️👍👍👍👍👍👍☺️🙏💯\n Positive 16 supper supper student laptop students office nice
1993 Worked well at first but then the sound card stopped working after 2 months! Going to get this fixed now, nice laptop apart from this.\n work well first sound card stop work 2 month go get fix nice laptop apart this\n Positive 25 sound card months nice laptop
1994 Good speed\n good speed\n Positive 2 good speed
1995 Good quality\n good quality\n Positive 2 good quality
1996 the laptop is is good but mine was defective\n laptop good mine defective\n Neutral 9 laptop good mine defective
1997 What a great product from hp\n great product hp\n Positive 6 great product hp
1998 Great value for money\n great valu money\n Positive 4 great value money
1999 Go for it. Worth it. Premium looking and light weight and works smoothly.\n go worth premium look light weight work smoothly\n Positive 13 worth premium light weight
2000 it has good finish, sound and battery life\n good finish sound batteri life\n Positive 9 good finish sound battery life
2001 So far so good\n far good\n Positive 4 good
2002 I like this laptop so far\n like laptop far\n Positive 6 laptop
2003 Very frustratingly slow. Touch screen works as per it's own mood\n frustratingli slow touch screen work per mood\n Neutral 11 slow touch screen own mood
2004 Portable\n portable\n Neutral 1 portable
2005 Likes:Good feel of keyboardMS Office is preinstalledScreen quality is excellentDislikesSlow\n likesgood feel keyboardm offic preinstalledscreen qualiti excellentdislikesslow\n Neutral 10 good feel keyboardms office preinstalledscreen quality excellentdislikesslow
2006 EASY TO WORK ON\n easi work on\n Neutral 4 easy
2007 Nice laptop .at this price range ... Laptop looks sexy btw !\n nice laptop price rang laptop look sexi btw \n Positive 13 nice laptop price range laptop sexy
2008 As per expectations not good performance\n per expect good performance\n Positive 6 expectations good performance
2009 It's good in this Budget\n good budget\n Positive 5 good budget
2010 No original OS, no Microsoft Office.Sent used item, had to replace it.Replaced product OS not working.Exchange period over\n origin os microsoft offices use item replac itreplac product os workingexchang period over\n Neutral 18 original os microsoft office.sent item it.replaced product working.exchange period
2011 Good Product.For speed upgrade RAM and SSD.\n good productfor speed upgrad ram ssd\n Positive 7 good product.for speed upgrade ram ssd
2012 Not worth the price. Very slow machine.\n worth price slow machine\n Positive 7 worth price slow machine
2013 ok\n ok\n Positive 1
2014 Horrible product. Extremely slow probably not enough RAM. Touch also not that good.Hugely disappointed. An absolute waste of money. Do not buy it. Its 45k down the drain.\n horribl product extrem slow probabl enough ram touch also goodhug disappoint absolut wast money buy 45k drain\n Negative 28 horrible product slow enough ram touch disappointed absolute waste money 45k drain
2015 Quite getting stuck in the middle while doing even small works also... Apps getting closed while dng things... So I don't recommend at all ..\n quit get stuck middl even small work also app get close dng thing dont recommend \n Negative 25 middle small works apps closed dng things
2016 Very Good pc... I need dedicated graphics card and Ram for heavy gaming... Otherwise PC is fabulous. I love it🤗🤗\n good pc need dedic graphic card ram heavi game otherwis pc fabul love it🤗🤗\n Positive 20 good pc dedicated graphics card heavy gaming pc fabulous
2017 Speed is not goodGone slow after few days\n speed goodgon slow days\n Neutral 8 speed goodgone few days
2018 Very good support system. There was speaker issue due to update in Windows10 and HP back-end team has resolved very fast. Great job...\n good support system speaker issu due updat windows10 hp backend team resolv fast great job\n Positive 24 good support system speaker issue due windows10 hp back end team great job
2019 Its overall a good product but the battery runs out too quickly. Need a power bank or an extra battery in case the power goes out.\n overal good product batteri run quickli need power bank extra batteri case power goe out\n Positive 26 overall good product battery power bank extra battery case power
2020 Good as expected\n good expected\n Positive 3 good
2021 Excellent Device\n excel device\n Positive 2 excellent device
2022 The laptop has become really slow, within 7 months of purchase. Wouldn't recommend it at all. Go for a better processor and ram\n laptop becom realli slow within 7 month purchas wouldnt recommend go better processor ram\n Negative 23 laptop slow months purchase better processor ram
2023 Very Bad Brand Product's. Better Opt to Buy from Other Brand to get a Right item's for Ur Hard Earned Money\n bad brand product better opt buy brand get right item ur hard earn money\n Negative 21 bad brand product opt other brand right item ur money
2024 The system hangs up so frequently..the worst system i have ever purchased HP should be ashamed for such a subservient product\n system hang frequentlyth worst system ever purchas hp asham subservi product\n Negative 21 system worst system hp ashamed subservient product
2025 It was a good deal. Product deliver safely. HP is always best for laptops. 360 degree in this price is a good move by HP.\n good deal product deliv safe hp alway best laptop 360 degre price good move hp\n Positive 25 good deal product hp best laptops degree price good move hp
2026 RAm could be better and screen at times feels lot glossy.\n ram could better screen time feel lot glossy\n Positive 11 ram better screen times lot glossy
2027 It is light weight ,looks great ,sound is ok,good for home and student.\n light weight look great sound okgood home student\n Positive 13 light weight great sound ok good home student
2028 I bought the laptop for commercial use....so i would like to incorporate gst number in my bill....kindly do the needful.....\n bought laptop commerci useso would like incorpor gst number billkindli needful\n Positive 21 laptop commercial use gst number bill needful
2029 It gets hanged When I connect it with internet...\n get hang connect internet\n Neutral 9 internet
2030 Go for it\n go it\n Neutral 3
2031 Looks stylish and suave. Other than that the laptop tends to lag sometimes. But still a good purchase.\n look stylish suav laptop tend lag sometim still good purchase\n Positive 18 stylish suave other laptop good purchase
2032 Definitely good investment\n definit good investment\n Positive 3 good investment
2033 Screen quality best. Better life best. Touch screen experience also best\n screen qualiti best better life best touch screen experi also best\n Positive 11 screen quality better life screen experience
2034 Loved this hp pavilion x360 14-cd0077tu. Light weight and sleek design. Battery life and touch screen is good.\n love hp pavilion x360 14cd0077tu light weight sleek design batteri life touch screen good\n Positive 18 hp pavilion x360 14-cd0077tu light weight sleek design battery life touch screen good
2035 Its ms office got deactivated though it includes itVery disappointingHelp me plz activating it\n ms offic got deactiv though includ itveri disappointinghelp plz activ it\n Positive 14 ms office
2036 Average laptop\n averag laptop\n Neutral 2 average laptop
2037 The OS is loaded and 4GB RAM is not enough. This product should come with minimum 8GB RAM.\n os load 4gb ram enough product come minimum 8gb ram\n Neutral 18 os gb ram enough product minimum gb ram
2038 Just awesome\n awesome\n Positive 2 awesome
2039 Screen quality is good along with touch screen and bettery life . It is not user friendly.\n screen qualiti good along touch screen betteri life user friendly\n Positive 17 screen quality good touch screen bettery life user friendly
2040 Too slow. Just two months old laptop, but the performance wise, looks like an old one....\n slow two month old laptop perform wise look like old one\n Positive 16 slow months old laptop performance wise old
2041 Window 10\n window 10\n Neutral 2 window
2042 Software should be updated\n softwar updated\n Neutral 4 software
2043 Best touch screen laptops are from HP\n best touch screen laptop hp\n Positive 7 best touch screen laptops hp
2044 Value for money and performance ok\n valu money perform ok\n Positive 6 value money performance ok
2045 Very bad sound .got it before 2weeks but having problems with sound and very slow in operations\n bad sound got 2week problem sound slow operations\n Negative 17 bad sound problems sound slow operations
2046 Its battery life is less....3 hours. But it should be about minimum 6 hours...\n batteri life less3 hour minimum 6 hours\n Neutral 14 battery life less hours minimum hours
2047 Worthy, but better to buy 8gb ram model.\n worthi better buy 8gb ram model\n Positive 8 worthy better gb ram model
2048 Its awsome ..only speed or cpu performance is little slow , otherwise it is 5 star.\n awsom speed cpu perform littl slow otherwis 5 star\n Neutral 16 awsome speed cpu performance little slow star
2049 Touch screen is very receptive and a joy to use. Overall excellent product.\n touch screen recept joy use overal excel product\n Positive 14 touch screen receptive joy overall excellent product
2050 Best laptop with reasonable price. Much better than Lenovo laptops\n best laptop reason price much better lenovo laptops\n Positive 10 best laptop reasonable price better lenovo laptops
2051 Good laptop, working fine. A bit overpriced as it has i3 processor.\n good laptop work fine bit overpr i3 processor\n Positive 12 good laptop bit overpriced i3 processor
2052 The look is perfect.but the product was damaged..the cooling fan was already out of working\n look perfectbut product damagedth cool fan alreadi working\n Positive 15 look perfect.but product fan
2053 Very nicely working\n nice working\n Positive 3
2054 The keyboard is fully gone in 6 months!Very slow!\n keyboard fulli gone 6 monthsveri slow\n Neutral 9 keyboard months!very slow
2055 Slow booting speed & applications access\n slow boot speed applic access\n Neutral 6 slow speed applications access
2056 Item is good. But warrany shows 5 months left that too is extended warranty.\n item good warrani show 5 month left extend warranty\n Positive 14 item good warrany months warranty
2057 I am having many issue with the slow working of the laptop. It hangs a lot.\n mani issu slow work laptop hang lot\n Neutral 16 many issue slow working laptop lot
2058 Slow Running Device but Amazon and Hp pavilion service is very Good..\n slow run devic amazon hp pavilion servic good\n Positive 13 slow device amazon hp pavilion service good
2059 Performance below expectation\n perform expectation\n Neutral 3 performance expectation
2060 Slow laptop\n slow laptop\n Neutral 2 slow laptop
2061 Slim light weight laptop good for working programming entertainment ...\n slim light weight laptop good work program entertain \n Positive 10 slim light weight laptop good programming entertainment
2062 Awesome 😍😍\n awesom 😍😍\n Neutral 2 awesome
2063 Simply best in this price range...And value for money product.\n simpli best price rangeand valu money product\n Positive 10 best price range value money product
2064 Awesome great money value product\n awesom great money valu product\n Positive 5 awesome great money value product
2065 They did not give bag along with...\n give bag along with\n Neutral 7 bag
2066 Worst product.Worst services from Amazon.Highly disappointing\n worst productworst servic amazonhighli disappointing\n Negative 6 worst product.worst services disappointing
2067 Good product for study, movie and normal work\n good product studi movi normal work\n Positive 8 good product study movie normal work
2068 Best laptop 💻 ever\n best laptop 💻 ever\n Positive 4 best laptop
2069 This a good laptop that backs up as a large tablet.\n good laptop back larg tablet\n Positive 11 good laptop large tablet
2070 Sounds problem since beginningHang problem for last 10 days\n sound problem sinc beginninghang problem last 10 days\n Negative 9 problem beginninghang problem last days
2071 Was expecting something better with this price,runs too much slow\n expect someth better pricerun much slow\n Positive 10 better price slow
2072 Update the battery life.\n updat batteri life\n Neutral 4 battery life
2073 Not good as I expected like macbook I am using macbook last couple of year\n good expect like macbook use macbook last coupl year\n Positive 16 good macbook macbook last couple year
2074 Over all a good package but I believe price is still high for this the key borad is basic with functions, build quality satisfactory, will update the rest after few months.\n good packag believ price still high key borad basic function build qualiti satisfactori updat rest months\n Positive 31 good package price high key borad basic functions quality satisfactory rest few months
2075 Very premium laptop awesome battery life .. everything is just terrific\n premium laptop awesom batteri life everyth terrific\n Positive 11 premium laptop awesome battery life terrific
2076 The lack of additional GPU memory which is essential for fast and better rendering of images in this model, Heavy gaming and video editing is above its pay grade . But if not for that this laptop is best for office work as it has MS office ( Homre & Student) free with it and for professional writers and coders . As the screen is small i.e 13 inches enables this laptop to have excellent battery backup of minimum 5-6 hrs on wifi. It's light and the innovative design of hinge is just cherry on top. Screen shows awesome clearity as claimed so is the sound system. Finger print senser has few glitches. Keyboard feels good on fingers . Ports expands the functionality of unit, but the 2 USB ports are way too close and are on same side is quite unsettling. Overall it's a 13 inches piece of awesomeness.\n lack addit gpu memori essenti fast better render imag model heavi game video edit pay grade laptop best offic work ms offic homr student free profession writer coder screen small ie 13 inch enabl laptop excel batteri backup minimum 56 hr wifi light innov design hing cherri top screen show awesom cleariti claim sound system finger print senser glitch keyboard feel good finger port expand function unit 2 usb port way close side quit unsettl overal 13 inch piec awesomeness\n Positive 151 lack additional gpu memory essential fast better rendering images model heavy gaming video editing pay grade laptop best office work ms office homre student free professional writers coders screen small inches laptop excellent battery backup minimum hrs wifi light innovative design hinge cherry top screen awesome clearity sound system finger print senser few glitches keyboard good fingers ports functionality unit usb ports close same side unsettling inches piece awesomeness
2077 This product specs is for around 50k laptop. Only one hard disk that too 128 gbssd. Atleat at 512 gb ssd. If you want to sell one on 65k.\n product spec around 50k laptop one hard disk 128 gbssd atleat 512 gb ssd want sell one 65k\n Neutral 29 product specs laptop hard disk gbssd atleat gb ssd
2078 So you get specs from the spec sheet. Its 256gb ssd. Mine boots up in 10s , restarts in almost 30-40s. Fingerprint reader is accurate but needs you to place the finger properly.. Screen is very good. Battery backup is descent. I've used it for 5-6 hrs on continous wifi and occasional YouTube with MSOffice and emailing (no gaming). The main attraction is its weight. And it can fit in a folder. It's very good for office goers who do not include in gaming. Also it heats up (not too much) and you can feel it. It doesn't heat up always. May be its during updates only. This is a very attractive piece. I got it for 61474 with bag, MS office 2019, McAfee 1 year subscription.\n get spec spec sheet 256gb ssd mine boot 10 restart almost 3040 fingerprint reader accur need place finger properli screen good batteri backup descent ive use 56 hr contin wifi occasion youtub msoffic email game main attract weight fit folder good offic goer includ game also heat much feel doesnt heat alway may updat attract piec got 61474 bag ms offic 2019 mcafe 1 year subscription\n Positive 128 specs spec sheet gb ssd mine boots restarts 40s fingerprint reader accurate finger screen good battery backup descent hrs continous wifi occasional youtube msoffice emailing gaming main attraction weight folder good office goers gaming much updates attractive piece bag ms office mcafee year subscription
2079 -Very light weight-screen is awesome-start up is very fast-battery life is good but could have been better.All in all value for money\n light weightscreen awesomestart fastbatteri life good could betteral valu money\n Positive 22 light weight screen awesome start fast battery life good value money
2080 Best\n best\n Positive 1 best
2081 Best at the price. Looks are also goodAnd specs are best for the priceWell done HP Omen !\n best price look also goodand spec best pricewel done hp omen \n Positive 18 best price looks goodand specs best pricewell hp omen
2082 The price is very high but it is worth the money. If you try to build I pc with the same specs in India then it is going to be just a few thousand rupees less costly. Otherwise very good. Can play AAA titles like gta5 or the crew 2 at ultra settings at 50 fps on native resolution\n price high worth money tri build pc spec india go thousand rupe less costli otherwis good play aaa titl like gta5 crew 2 ultra set 50 fp nativ resolution\n Positive 59 price high worth money same specs india few rupees costly good aaa titles gta5 crew ultra settings fps native resolution
2083 This is king of computers in the world. This is best than MacBook.just go for it and get nice experience\n king comput world best macbookjust go get nice experience\n Positive 20 king computers world best macbook.just nice experience
2084 My kidneys were better than this laptop 🥺\n kidney better laptop 🥺\n Positive 8 kidneys better laptop
2085 Buy a ps4 pro...thank me later\n buy ps4 prothank later\n Neutral 6 ps4 pro
2086 U all don't know pc or loptop graphic\n u dont know pc loptop graphic\n Neutral 8 pc loptop graphic
2087 This is my dream which I don't know when will be completed!\n dream dont know completed\n Positive 12 dream
2088 Get a ps4 pro or xbox one x instead.\n get ps4 pro xbox one x instead\n Neutral 9 ps4 pro xbox x
2089 Buy ps4 rather than this\n buy ps4 rather this\n Neutral 5 ps4
2090 Now it's been a month I am using this laptop, and I am really impressed with the performance..Yes surely AMD Radeon 520 isn't enough for gaming but games like CS GO , GTA 5 , Fifa 18 , etc. works really well and get an average of 80 FPS at 1080p medium settings..Really worth it..\n month use laptop realli impress performancey sure amd radeon 520 isnt enough game game like cs go gta 5 fifa 18 etc work realli well get averag 80 fp 1080p medium settingsr worth it\n Positive 55 month laptop impressed performance amd radeon enough gaming games cs go gta fifa average fps medium settings worth
2091 It is the best product to buy in this range. I have bought this laptop because of 8gb ram and 2gb graphics. I have bought at the cost of 33,104rs. only.\n best product buy rang bought laptop 8gb ram 2gb graphic bought cost 33104r only\n Positive 31 best product range laptop gb ram gb graphics cost 33,104rs
2092 I'm truly satisfied with the performance of the laptop and the battery backup especially considering the cost I paid for this.Also, GET 10% CASHBACK + 6 Month Extended Warranty In this Laptop by Ordering through vqr .in/aHope this helps! If helped then Please Press the Helpful Button.Happy Purchasing\n im truli satisfi perform laptop batteri backup especi consid cost paid thisalso get 10 cashback 6 month extend warranti laptop order vqr inahop help help pleas press help buttonhappi purchasing\n Positive 48 satisfied performance laptop battery backup cost this.also % cashback month warranty laptop vqr .in helpful button.happy purchasing
2093 Amazing product in this rate....but battery backup performance only 3 hours other as good for loptop...\n amaz product ratebut batteri backup perform 3 hour good loptop\n Positive 16 amazing product rate battery backup performance hours other good loptop
2094 This Lap Top Is Features are Really Awesome ,But This Product Is not Original . 1 month of usage this product doesn't work properly , keypad Is Not Working , And this Don't have any warranty.i totally Disappointment for this product . i never buy any product from Appario Retail Private Ltd &Don't encourage these sellers in amazon..\n lap top featur realli awesom product origin 1 month usag product doesnt work properli keypad work dont warrantyi total disappoint product never buy product appario retail privat ltd dont encourag seller amazon\n Positive 60 lap top features awesome product original month usage product keypad warranty.i disappointment product product appario retail private ltd sellers amazon
2095 It is not original product of Hp ,Think twice before buying it,Working good,condition is good,All good but not original and not have graphics card inside,No invoice there,As it is not real hp product hp will not give you any type of warranty.\n origin product hp think twice buy itwork goodcondit goodal good origin graphic card insideno invoic therea real hp product hp give type warranty\n Positive 42 original product hp good condition good good original graphics card invoice real hp product hp type warranty
2096 good in medium range.medium graphics game runs easilynot long lasting batterynot for working professionals but good for students. and LAST HP don't give best value product in medium range\n good medium rangemedium graphic game run easilynot long last batterynot work profession good student last hp dont give best valu product medium range\n Positive 29 good medium range.medium graphics game runs professionals good students last hp best value product medium range
2097 Lovely smooth laptop for gaming because of DOS you can install LTSB of Windows 10 so fast so smooth loving itGot at price of 26000 with exchange of old I3 2nd generation exchange price around 7000 for i3 2nd generation old laptop was OP DOPE\n love smooth laptop game do instal ltsb window 10 fast smooth love itgot price 26000 exchang old i3 2nd gener exchang price around 7000 i3 2nd gener old laptop op dope\n Positive 45 lovely smooth laptop gaming dos ltsb windows smooth itgot price exchange old i3 2nd generation exchange price i3 2nd generation old laptop op dope
2098 It's a faulty part with scratches on top of it. When I called HP Customer care they informed me that it's registered in some other person name and warranty will expire in 15 days so I booked a return.Don't get fooled by investing 38k and booking it online instead go to offline store and purchase it.\n faulti part scratch top call hp custom care inform regist person name warranti expir 15 day book returndont get fool invest 38k book onlin instead go offlin store purchas it\n Positive 56 faulty part scratches top hp customer care other person name warranty days return.don't 38k offline store
2099 Best ever product at this price ,giving 8 GB ram and 2 GB graphics is very good .\n best ever product price give 8 gb ram 2 gb graphic good \n Positive 18 product price gb ram gb graphics good
2100 Hi Team,Please help in Exchanging my last order for HP Laptop as the product is not working and even I am unable to on the laptop after installing windows.I contacted to HP service center and they told if they repair with new hardware then it will be charged separately.I have not even used the laptop for a minute but i am facing problem and replacement time has been completed.Please help in in exchanging the product.Please give me a call in an urgent basis.Thanks,\n hi teampleas help exchang last order hp laptop product work even unabl laptop instal windowsi contact hp servic center told repair new hardwar charg separatelyi even use laptop minut face problem replac time completedpleas help exchang productpleas give call urgent basisthanks\n Positive 83 team last order hp laptop product unable laptop hp service center new hardware separately.i laptop minute problem replacement time completed.please help product.please call urgent basis.thanks
2101 Different dProduct sold with extension warranty by Amazon which was displayed in HP website with serial number. I contacted HP customer care regarding warranty issue. Till the date problem not solved. Camera quality is very very poor. Charger point is playing at system end. System display quality is moderate. There is no proper space between monitor to base which may leads to damage the product. it is not effective with 2GB graphic card\n differ dproduct sold extens warranti amazon display hp websit serial number contact hp custom care regard warranti issu till date problem solv camera qualiti poor charger point play system end system display qualiti moder proper space monitor base may lead damag product effect 2gb graphic card\n Positive 76 different dproduct extension warranty amazon hp website serial number hp customer care warranty issue date problem camera quality poor charger point system end system display quality moderate proper space monitor base product effective gb graphic card
2102 Working good and had big screen good claritySound is some what less and system working good and battery is good\n work good big screen good claritysound less system work good batteri good\n Positive 20 good big screen good claritysound less system good battery good
2103 Excellent timed delivery by Amazon. It is working smooth and fast.\n excel time deliveri amazon work smooth fast\n Positive 11 excellent delivery amazon smooth fast
2104 If you have understand the laptop specification clearly , go for it.I expected something from this specification but not satisfied. Can't return too as I have already spent cost of OS and other softwares.\n understand laptop specif clearli go iti expect someth specif satisfi cant return alreadi spent cost os softwares\n Neutral 34 laptop specification it.i specification satisfied cost os other softwares
2105 This is best quality of product under 35k but not excellent some time get hang near about 2 to 3 minutes.... After starting same problem facing.... I think u can understand what is currently status of laptop working under 1 month only....\n best qualiti product 35k excel time get hang near 2 3 minut start problem face think u understand current statu laptop work 1 month only\n Positive 42 best quality product 35k excellent time minutes same problem status laptop month
2106 Fake never trust online productsWithin one year two times key board complaintNd it is made by plastic material not a metal..so got a opening nd closing problem with this..atleast it is not so good for 1 year also..I have purchased it on november 2018 ..I got many problems with this lapy..so value for money never trust again..even the cost of this product is same at offline showrooms alsoo so friends but it at ur near by showrooms..never trust it\n fake never trust onlin productswithin one year two time key board complaintnd made plastic materi metalso got open nd close problem thisatleast good 1 year alsoi purchas novemb 2018 got mani problem lapyso valu money never trust againeven cost product offlin showroom alsoo friend ur near showroomsnev trust it\n Negative 79 fake trust online productswithin year times key board complaintnd plastic material metal opening nd closing problem atleast good year november many problems lapy value money cost product same offline showrooms friends ur showrooms
2107 It's really good for playing gta v...\n realli good play gta v\n Positive 7 good gta v
2108 I am writing review based on my bitter experience with poor hardware quality.Within 6 months of purchased laptop hinge joint (joint between keypad and screen) broken while normal closing laptop. And reason is one hinge joint was not able to close and other one was working properly. Because of this many parts of laptop demaged (like keypad, joint, frame of screen, top frame).With Brand HP we should expect some what good quality.\n write review base bitter experi poor hardwar qualitywithin 6 month purchas laptop hing joint joint keypad screen broken normal close laptop reason one hing joint abl close one work properli mani part laptop demag like keypad joint frame screen top framewith brand hp expect good quality\n Negative 73 review bitter experience poor hardware quality.within months laptop hinge joint joint keypad screen normal closing laptop reason hinge joint able other many parts laptop keypad joint frame screen top frame).with brand hp good quality
2109 I purchased this one and its very slow, I recommend others to pay little more and buy i5 processor instead, I have 4 laptops at home and this was 5th one.After one year I am giving it for scrape.\n purchas one slow recommend other pay littl buy i5 processor instead 4 laptop home 5th oneaft one year give scrape\n Positive 39 one slow others little more i5 processor laptops home 5th one.after year scrape
2110 Laptop is good for both gaming and basic things but the only disappointed thing is sound quality else laptop is best . 😎😎 Love it\n laptop good game basic thing disappoint thing sound qualiti els laptop best 😎😎 love it\n Positive 25 laptop good gaming basic things only disappointed thing sound quality laptop best
2111 Good for the price. Build quality is poor. Games like FIFA 17 run in medium graphics.Need your own licensed windows. Installation is a bit difficult.\n good price build qualiti poor game like fifa 17 run medium graphicsne licens window instal bit difficult\n Negative 25 good price quality poor games fifa run medium graphics.need own licensed windows installation bit difficult
2112 Pros: Everything looks good.Cons: Power button can be much butter.\n pro everyth look goodcon power button much butter\n Neutral 10 pros good.cons power button much butter
2113 Pretty poor performance when Windows 10 was installed. Takes forever to boot. I could live with that, but small activities like opening browser takes like 15-20 seconds. Not acceptable.\n pretti poor perform window 10 instal take forev boot could live small activ like open browser take like 1520 second acceptable\n Positive 29 poor performance windows boot small activities browser seconds acceptable
2114 Brightness control of display not working after updating the drivers.Except that everything is good. Good for gaming. No lag at all.\n bright control display work updat driversexcept everyth good good game lag all\n Positive 21 brightness control display drivers.except good good gaming lag
2115 You can bought online except offline\n bought onlin except offline\n Negative 6 offline
2116 Really good pc for workingVery good battery lifeFull hd screen resolutionI have not faced any issue till date\n realli good pc workingveri good batteri lifeful hd screen resolutioni face issu till date\n Positive 18 good pc workingvery good battery lifefull hd screen resolutioni issue date
2117 Good product but dont give a warrenty inviose\n good product dont give warrenti inviose\n Positive 8 good product warrenty inviose
2118 Sound is low on You tube and online streaming vedios on Amazon prime, Netflix, Zee5\n sound low tube onlin stream vedio amazon prime netflix zee5\n Negative 15 sound low online streaming vedios amazon prime netflix zee5
2119 Excellent product. No problems with laptop.\n excel product problem laptop\n Positive 6 excellent product problems laptop
2120 [[ASIN:B078MW5W3Z HP 15-BS658tx 2017 15.6-inch Laptop (6th Gen Core i3-6006U/8GB/1TB/DOS/2GB Graphics), Black] Sir billing printing are not perfectly plz resend billing recept\n asinb078mw5w3z hp 15bs658tx 2017 156inch laptop 6th gen core i36006u8gb1tbdos2gb graphic black sir bill print perfectli plz resend bill recept\n Positive 22 asin b078mw5w3z hp laptop 6th gen core i3 6006u/8gb/1tb dos/2 gb graphics black sir billing printing recept
2121 Good productworking finerunning 4 virtual machines at timegre delivery\n good productwork finerun 4 virtual machin timegr delivery\n Positive 9 good productworking virtual machines timegre delivery
2122 Outstanding performance......Everything working nic.....✔✔✔✔i am using it for last 5 months......no problem yet......👌👌👍Very happy with it...........😀😀😁😁\n outstand performanceeveryth work nic✔✔✔✔i use last 5 monthsno problem yet👌👌👍veri happi it😀😀😁😁\n Negative 16 outstanding performance nic last months problem happy
2123 Good for decent computing. Great for students.\n good decent comput great students\n Positive 7 good decent computing great students
2124 great laptop\n great laptop\n Positive 2 great laptop
2125 It's OK but not up to the mark like it has a great RAM but still performance is not like that..\n ok mark like great ram still perform like that\n Positive 21 ok mark great ram performance
2126 Average product. Not good for gaming.\n averag product good gaming\n Positive 6 average product good gaming
2127 Built in quality not so good but overall good laptop with this specification in this price range\n built qualiti good overal good laptop specif price range\n Positive 17 quality good overall good laptop specification price range
2128 Awesome...... expected quality\n awesom expect quality\n Neutral 3 awesome quality
2129 Good device.\n good device\n Positive 2 good device
2130 This laptop is good for normal user and this is support FHD display and fast charging so this is very good product\n laptop good normal user support fhd display fast charg good product\n Positive 22 laptop good normal user support fhd display fast good product
2131 Osm laptop really my first laptop i cant expect to this really best laptop for anything like gaming and other\n osm laptop realli first laptop cant expect realli best laptop anyth like game other\n Negative 20 laptop first laptop best laptop gaming other
2132 Laptop hangs very often and it wakes sound while it is booting. Its screen got also scratch on vlc.\n laptop hang often wake sound boot screen got also scratch vlc\n Neutral 19 laptop sound screen scratch vlc
2133 Overall good product, but Battery backup is less. Only 2.30 hours.\n overal good product batteri backup less 230 hours\n Positive 11 overall good product battery backup less hours
2134 It's worth money. Definitely try this.\n worth money definit tri this\n Positive 6 worth money
2135 Sound is low\n sound low\n Negative 3 sound low
2136 Good at the price range.\n good price range\n Positive 5 good price range
2137 Not worth it product. Display is so bad\n worth product display bad\n Negative 8 worth product display bad
2138 Product is good but i don't receive original bill till now\n product good dont receiv origin bill till now\n Positive 11 product good original bill
2139 Its too good for this value\n good value\n Positive 6 good value
2140 This product fabulous\n product fabulous\n Positive 3 product fabulous
2141 Nice product..\n nice product\n Positive 2 nice product
2142 good product .driver CD not available in box\n good product driver cd avail box\n Positive 9 good product cd available box
2143 Very usless product in comparison to the price of the product.\n usless product comparison price product\n Neutral 11 usless product comparison price product
2144 I was using this more than 6 month. No issues till now.\n use 6 month issu till now\n Neutral 12 more month issues
2145 For students laptop\n student laptop\n Neutral 3 students laptop
2146 Good product overall but speaker volume is low.\n good product overal speaker volum low\n Positive 8 good product speaker volume low
2147 This laptop is value for money.\n laptop valu money\n Neutral 6 laptop value money
2148 It's really great..! Thank you Amazon :)\n realli great thank amazon \n Positive 7 great amazon
2149 Best product in this price range\n best product price range\n Positive 6 best product price range
2150 great product with perfect price...\n great product perfect price\n Positive 5 great product perfect price
2151 Graphics is not so good.\n graphic good\n Positive 5 graphics good
2152 Value for money laptop.....\n valu money laptop\n Neutral 4 value money laptop
2153 Nice model\n nice model\n Positive 2 nice model
2154 Buying Product warranty not add HP CENTRE..\n buy product warranti add hp centre\n Neutral 10 product warranty hp centre
2155 Nice laptop for daily uses...\n nice laptop daili uses\n Positive 5 nice laptop daily uses
2156 I like this laptop very good one\n like laptop good one\n Positive 7 laptop good one
2157 laptop quality is very good\n laptop qualiti good\n Positive 5 laptop quality good
2158 Battery backup lowest\n batteri backup lowest\n Negative 3 battery backup lowest
2159 Like good sound quality\n like good sound quality\n Positive 4 good sound quality
2160 not good product\n good product\n Positive 3 good product
2161 I love it very good\n love good\n Positive 5 good
2162 For gaming laptop\n game laptop\n Neutral 3 laptop
2163 Very good procduct\n good procduct\n Positive 3 good procduct
2164 Very bad\n bad\n Negative 2 bad
2165 I had been using Lenovo for more than 2 years. But I had pathetic experience after 1 year. Because of the Battery problem and screen problem and keyboard problem,Now I have been using this laptop since a month. The keyboard is very tough comparatively Lenovo and customer support is very proactive to help. I would recommend guys who want to buys a mid range or basic laptop around 30 to 35k. Please try to extend the warranty time if any offer is running or before lapse of your original warranty period,There are lot of difference between 4GB and 8GB RAM type, processing will be fast, Apart from will get a 2 GB Graphic card useful for high end website and mid range Games, Just after booting please update the Graphic form Redeon site and check it is active always so that you can get the best experience. The battery back up is superb with four cell power, Never leave it charging when the battery is 100% and in a month or twice, try to drain the full battery for long life.Though it looks bit bulky but the quality is top notch. Never go for Lenovo's slim design and even am not satisfied with their customer support as i encounter wit them number of times. Above all I want to Thank Amazon delivery.Hope this review will helpful to you. Thanks\n use lenovo 2 year pathet experi 1 year batteri problem screen problem keyboard problemnow use laptop sinc month keyboard tough compar lenovo custom support proactiv help would recommend guy want buy mid rang basic laptop around 30 35k pleas tri extend warranti time offer run laps origin warranti periodther lot differ 4gb 8gb ram type process fast apart get 2 gb graphic card use high end websit mid rang game boot pleas updat graphic form redeon site check activ alway get best experi batteri back superb four cell power never leav charg batteri 100 month twice tri drain full batteri long lifethough look bit bulki qualiti top notch never go lenovo slim design even satisfi custom support encount wit number time want thank amazon deliveryhop review help thanks\n Positive 231 lenovo more years pathetic experience year battery problem screen problem keyboard problem laptop month keyboard tough lenovo customer support proactive guys mid range basic laptop 35k warranty time offer lapse original warranty period lot difference gb gb ram type processing fast gb graphic card useful high end website mid range games graphic form redeon site active best experience battery superb cell power battery % month full battery bit bulky quality top notch lenovo slim design satisfied customer support number times amazon delivery.hope review helpful thanks
2166 Nice laptop great performance battery is good but in my laptop i found a some minor defect inside laptop when i took up my laptop any boolt was free from its place can moving freelyy in inside are but nice product thank you amazon but i am using this laptop from since 3month i have some problem with regarding touchpad of my laptop but it got replaced under warrenty but after replacement i got same problem......\n nice laptop great perform batteri good laptop found minor defect insid laptop took laptop boolt free place move freelyy insid nice product thank amazon use laptop sinc 3month problem regard touchpad laptop got replac warrenti replac got problem\n Positive 76 nice laptop great performance battery good laptop minor defect inside laptop laptop boolt free place freelyy nice product amazon laptop problem touchpad laptop warrenty replacement same problem
2167 its duplicate product i dont want this laptop , amd graphics no inside the lap top,product quality very poor, top of laptop cover very soft and lean.\n duplic product dont want laptop amd graphic insid lap topproduct qualiti poor top laptop cover soft lean\n Negative 27 duplicate product laptop amd graphics lap top product quality poor top laptop cover soft lean
2168 Best in this price range, using it for more than 2 weeks, Graphics card and 8 GB RAM is the best point of the laptop\n best price rang use 2 week graphic card 8 gb ram best point laptop\n Positive 25 best price range more weeks graphics card gb ram best point laptop
2169 This Is Really Good With 1tb/ 8gb ram. I suggest this one for student and office work. But for and Radeon is not enough for gamers. You can play games like GTA v / fifa 18 but in low graphics quality . Works smooth. Happy to have it for my studio works. But video editing softwares like Adobe premiere pro stucks in it.\n realli good 1tb 8gb ram suggest one student offic work radeon enough gamer play game like gta v fifa 18 low graphic qualiti work smooth happi studio work video edit softwar like adob premier pro stuck it\n Positive 63 good gb ram one student office work radeon enough gamers games gta v fifa low graphics quality works happy studio video editing softwares adobe premiere pro stucks
2170 Manufacturing defect\n manufactur defect\n Negative 2 manufacturing defect
2171 So happy..thank amazon\n happythank amazon\n Positive 3 happy amazon
2172 Don't buy, autocad stadd.pro not working properly. Not happy\n dont buy autocad staddpro work properli happy\n Positive 9 stadd.pro happy
2173 I got this laptop from a nearby retailer for 33,500 rs on launch date on 25 Dec 2017Pros...Faster ram1 Tb hybrid1080p displayRadeon m530 graphic for gamingConsNo consI use it for mid range gaming, college work and programming........worth buying\n got laptop nearbi retail 33500 rs launch date 25 dec 2017prosfast ram1 tb hybrid1080p displayradeon m530 graphic gamingconsno consi use mid rang game colleg work programmingworth buying\n Neutral 38 laptop nearby retailer rs launch date dec 2017pros faster ram1 tb hybrid1080p displayradeon m530 graphic gamingconsno consi mid range gaming college work programming worth buying
2174 Good Product\n good product\n Positive 2 good product
2175 EXCELLENT\n excellent\n Positive 1 excellent
2176 Window does not come with it and also not provide bag of packing the laptop.\n window come also provid bag pack laptop\n Neutral 15 window bag laptop
2177 Worst product waste of money don't go by HP laptops Dell is better then the HP even Lenovo also better. Worst HP laptops and services centers\n worst product wast money dont go hp laptop dell better hp even lenovo also better worst hp laptop servic centers\n Negative 26 worst product waste money hp laptops dell better hp lenovo hp laptops services centers
2178 Good Product....Worth Buy...Value for Money\n good productworth buyvalu money\n Positive 5 good product worth buy value money
2179 This product doesn't support wireless network drivers for linux. Keep in mind before buying it.\n product doesnt support wireless network driver linux keep mind buy it\n Negative 15 product wireless network drivers linux mind
2180 excellent..laptop....battery backup in 4hr 15 min.....charging time 2hr 30 min for full chrging...super fast laptop....if any dout ask me....\n excellentlaptopbatteri backup 4hr 15 mincharg time 2hr 30 min full chrgingsup fast laptopif dout ask me\n Neutral 19 excellent laptop battery backup 4hr min time 2hr min full chrging fast laptop dout
2181 It’s damn slow after 5 months. Take 3 minutes to boot up. Feels like throwing to trash. Damn slowwww!!!! Only have 2GHz processing frequency. While choosing i3, choose processors having frequency range between 2.5 to 3 GHz\n it’ damn slow 5 month take 3 minut boot feel like throw trash damn slowwww 2ghz process frequenc choos i3 choos processor frequenc rang 25 3 ghz\n Negative 37 slow months minutes slowwww processing frequency i3 processors frequency range ghz
2182 dudes i say this is the best laptop and well i think this is at the best cost and well if u play games with high graphics it works but the laptop gets heated up and as well i would prefer i5 for gaming with the same specifications and this is the best value for money and i bought it at the local store and i would say go for it with a low budget\n dude say best laptop well think best cost well u play game high graphic work laptop get heat well would prefer i5 game specif best valu money bought local store would say go low budget\n Positive 76 dudes best laptop best cost games high graphics laptop i5 gaming same specifications best value money local store low budget
2183 Great laptop....looks better than displayed pictures\n great laptoplook better display pictures\n Positive 6 great laptop better pictures
2184 Buy hp 15 bs675tx in 32500 then add 4 gb ram. now total cost 36000 but the advantage is u can get win 10 that is not in bs658tx so in cost of bs658tx u can get higher ghz (2.3) than bs658tx and win10 also\n buy hp 15 bs675tx 32500 add 4 gb ram total cost 36000 advantag u get win 10 bs658tx cost bs658tx u get higher ghz 23 bs658tx win10 also\n Positive 46 hp bs675tx gb ram total cost advantage bs658tx cost bs658tx higher ghz bs658tx win10
2185 This laptop is best in this price range. And yes you can play gta 5 and its very good. This is my first laptop, so i dont know how much heat and how much battery backup is normal. But while playing games, it heats and battery discharges really quick, so i recommend to play while plugged in. Windows 10 is running very nicely (64 bit). Only the boot time is long. Movie experience is too good. The sound is really clear and good. Was delivered in a good condition. Just the body is not too tightly packed. But that's not a big issue. Ports are working good. I needed a laptop for all needs and they were all fulfilled. Gaming, Movie, Songs, Official Work that's what i tried till now and i am satisfied. To end, i was very careful while buying laptop because it was my first laptop and also a laptop a laptop is a big thing. I did every research and found it the best. Just know that it is dual core. Which i didn't knew before buying it. And i dont have any problem in it.\n laptop best price rang ye play gta 5 good first laptop dont know much heat much batteri backup normal play game heat batteri discharg realli quick recommend play plug window 10 run nice 64 bit boot time long movi experi good sound realli clear good deliv good condit bodi tightli pack that big issu port work good need laptop need fulfil game movi song offici work that tri till satisfi end care buy laptop first laptop also laptop laptop big thing everi research found best know dual core didnt knew buy dont problem it\n Positive 190 laptop best price range gta good first laptop much heat much battery backup normal games battery discharges quick windows bit boot time long movie experience good sound clear good good condition body big issue ports good laptop needs gaming movie songs official work satisfied careful laptop first laptop laptop laptop big thing research best dual core problem
2186 It's excellent\n excellent\n Positive 2 excellent
2187 Excellent work\n excel work\n Positive 2 excellent work
2188 I am so sad to buy this item. The PC is simply damage in the delivery time and the sound is average\n sad buy item pc simpli damag deliveri time sound average\n Negative 22 sad item pc damage delivery time sound average
2189 nice ....no heating problem and sound problem after installing the drivers...but if you buy online no extended warranty\n nice heat problem sound problem instal driversbut buy onlin extend warranty\n Negative 18 nice heating problem sound problem drivers extended warranty
2190 Too slow problem. Return\n slow problem return\n Negative 4 slow problem return
2191 Very nice laptop\n nice laptop\n Positive 3 nice laptop
2192 everthing is pretty good except the speaker output, its very low\n everth pretti good except speaker output low\n Positive 11 everthing good speaker output low
2193 don't buy this laptopbecouse you don't get the amd radeon 520 graphics driver\n dont buy laptopbecous dont get amd radeon 520 graphic driver\n Neutral 13 laptopbecouse amd radeon graphics driver
2194 Very good laptop....\n good laptop\n Positive 3 good laptop
2195 Very nice quality\n nice quality\n Positive 3 nice quality
2196 Worst product.. sent into repair twice within last one year.. Very slow.. Won't recommend\n worst product sent repair twice within last one year slow wont recommend\n Negative 14 worst product repair last year slow
2197 I BOUGHT THIS COMPUTER WITH GREAT EXPECTATIONS BUT WITHIN 3 MONTHS THERE WAS PROBLEM WITH THE SCREEN NOT REMAINING STEADY AND THEN ONE DAY IT SUDDENLY BLANKED OUT. IT HAS A ONE YEAR WARRANTY AND I ALSO BOUGHT 2 YEARS ADDITIONAL WARRANTY. SINCE IT IS IN THE WARRANTY PERIOD KINDLY ARRANGE TO DO THE NEEDFUL AS THE DEALERS ARE NOT RESPONDING. THANKING YOU.\n bought comput great expect within 3 month problem screen remain steadi one day suddenli blank one year warranti also bought 2 year addit warranti sinc warranti period kindli arrang need dealer respond thank you\n Positive 63 computer great expectations months problem screen steady day year warranty years additional warranty warranty period needful dealers
2198 Excellent Product Till Date ....Only Needs external power source for heavy gaming graphics ...\n excel product till date need extern power sourc heavi game graphic \n Positive 14 excellent product date external power source heavy gaming graphics
2199 It's been a month, working on this laptop. It's performance is good, I mainly utilise for architecture related software. It works perfectly for me.\n month work laptop perform good mainli utilis architectur relat softwar work perfectli me\n Positive 24 month laptop performance good architecture related software
2200 It is worth buying this product from hpSound quality is awesome battery life is not that good but it is ok. 5 to 6 hrs with video playbackAmazon delivery is nice\n worth buy product hpsound qualiti awesom batteri life good ok 5 6 hr video playbackamazon deliveri nice\n Positive 31 worth product hpsound quality awesome battery life good ok hrs video playbackamazon delivery nice
2201 Very good product. Superb product from hp.Thanks amajon.\n good product superb product hpthank amajon\n Positive 8 good product superb product hp.thanks amajon
2202 Easy to use and very handy\n easi use handy\n Neutral 6 easy handy
2203 Product is good not excellent, Comes with good battery life and helps to work longer\n product good excel come good batteri life help work longer\n Positive 15 product good excellent good battery life
2204 I had horrific experience with the product. Purchased online though not from Amazon. This product wasn't performing as per specifications. This product comes under 10 days replacement policy. Hard disk failed on 11th day (nightmarish experience). I approached service center on 12th day and got to know, HP has 14 days replacement (a big relief) policy (I had good service support experience at service center). Service center issued dead on arrival (DOA) letter on 13th day. But got to know that replacement can be done by the seller only (now daymarish experience). Now was the time for vigorous follow up (that included warning for dragging in consumer forum) with non resposive customer support representative of the seller (attention:it wasn't Amazon). Somehow, I managed to return the product on 20th day.I had following major working experience with the product.# Very slow start up (time up to two minutes). As per customer support it was normal (I contacted twice during working duration of the product).#It has latest processor with latest generation but don't have high clock speed.It has year old graphics.#Though it has eye catching design with led keyboard, it had heating problem, even noisy fan wasn't enough to cool it. Battery hours are also low, around 3 hours.#I didn't play any game but I used it for programming and found response was slow.#Good service support : online (chat/phone) as well as service center.\n horrif experi product purchas onlin though amazon product wasnt perform per specif product come 10 day replac polici hard disk fail 11th day nightmarish experi approach servic center 12th day got know hp 14 day replac big relief polici good servic support experi servic center servic center issu dead arriv doa letter 13th day got know replac done seller daymarish experi time vigor follow includ warn drag consum forum non respos custom support repres seller attentionit wasnt amazon somehow manag return product 20th dayi follow major work experi product slow start time two minut per custom support normal contact twice work durat productit latest processor latest gener dont high clock speedit year old graphicsthough eye catch design led keyboard heat problem even noisi fan wasnt enough cool batteri hour also low around 3 hoursi didnt play game use program found respons slowgood servic support onlin chatphon well servic center\n Positive 233 horrific experience product amazon product specifications product days replacement policy hard disk 11th day nightmarish experience service center 12th day hp days replacement big relief policy good service support experience service center service center dead arrival doa letter 13th day replacement seller experience time vigorous warning consumer forum non resposive customer support representative seller attention amazon product 20th day.i major working experience product slow start time minutes customer support normal duration product).#it latest processor latest generation high clock speed.it year old graphics.#though eye design keyboard heating problem noisy fan enough battery hours low game programming response service support online chat phone service center
2205 I m very disappointed by it as it is not starting.just showing C:\\n disappoint startingjust show c\n Negative 13 m disappointed starting.just
2206 With a decently high price tag you would expect a level of performance that too from HP laptops,but utterly disappointed with this product,I bought it from not from Amazon but a dealer near me, within one year of purchase it broke down 3 times and what is worse is that it just blacksout without responding to any input methods, worst experience on an HP product so far ... Please don't buy this one.\n decent high price tag would expect level perform hp laptopsbut utterli disappoint producti bought amazon dealer near within one year purchas broke 3 time wors blacksout without respond input method worst experi hp product far pleas dont buy one\n Negative 73 high price tag level performance hp laptops disappointed product amazon dealer year purchase times worse input methods worst experience hp product one
2207 I bought it from the official HP world showroom.The moment I started using it disk utilisation is it hundred percent every time even On idle.Contacted customer care about the same and they confirmed that it is DOA(Dead on Arrival) and told me about the 14 day replacement policy and then I was issued a new laptop by the dealer.Now coming to the new one it takes 2-3 minutes to boot despite having the latest i7 8th gen cpu.The major drawback is the HDD its a 5400 rpm drive.After spending 70K on my machine I had nightmares and I was feeling like why did I buy this.Even basic task would take long time like ppt,word or even java programs(written by me ) took about 6 seconds to compile.I was shocked.Now I ordered an ssd 120gb(M.2, Thank HP for that otherwise you will have to remove the HDD given) for this and I really shines.Using the 2TB HDD as a data drive and SSD as the boot drive.Now the laptop boots in just 5 seconds.No exaggeration.Now the machine works like a true champSo,Before buying make sure that you add an SSD to it and boot windows from that.Then it is worth the money.Edit: just a year after purchase the motherboard got fried. Luckily I paid for extended warranty and got it for free. Else it would have costed me 35k+labour charges.\n bought offici hp world showroomth moment start use disk utilis hundr percent everi time even idlecontact custom care confirm doadead arriv told 14 day replac polici issu new laptop dealernow come new one take 23 minut boot despit latest i7 8th gen cputh major drawback hdd 5400 rpm driveaft spend 70k machin nightmar feel like buy thiseven basic task would take long time like pptword even java programswritten took 6 second compilei shockednow order ssd 120gbm2 thank hp otherwis remov hdd given realli shinesus 2tb hdd data drive ssd boot drivenow laptop boot 5 secondsno exaggerationnow machin work like true champsobefor buy make sure add ssd boot window thatthen worth moneyedit year purchas motherboard got fri luckili paid extend warranti got free els would cost 35klabour charges\n Positive 229 official hp world showroom.the moment disk utilisation percent time idle.contacted customer care same doa(dead arrival day replacement policy new laptop dealer.now new one minutes latest i7 8th gen cpu.the major drawback hdd rpm drive.after spending 70k machine nightmares this.even basic task long time ppt word java programs(written seconds compile.i shocked.now ssd hp hdd tb hdd data drive boot laptop boots machine true champso sure ssd boot windows that.then worth money.edit year purchase motherboard warranty free charges
2208 After buying it, I found the performance to be so bad that I had to upgrade its RAM and install SSD. No support from HP.\n buy found perform bad upgrad ram instal ssd support hp\n Negative 25 performance bad ram ssd support hp
2209 There is a major drawback with 940mx graphic card which comes with this laptop. Go for laptops with Mx150. 2Gb mx150 are way more powerful than 4Gb 940mx\n major drawback 940mx graphic card come laptop go laptop mx150 2gb mx150 way power 4gb 940mx\n Neutral 28 major drawback 940mx graphic card laptop laptops mx150 gb mx150 powerful gb 940mx
2210 Battery backup isn't good\n batteri backup isnt good\n Negative 4 battery backup good
2211 The laptop is very good.only drawback is the battery life.\n laptop goodonli drawback batteri life\n Neutral 10 laptop good.only drawback battery life
2212 Cool laptop... But battery backup not so good. ..\n cool laptop batteri backup good \n Positive 9 cool laptop battery backup good
2213 Best laptop with awesome configuration\n best laptop awesom configuration\n Positive 5 best laptop awesome configuration
2214 The seller (Rentopcdotcom) offers very poor quality refurbished items. I purchased a laptop (HP Elitebook 840G1). The laptop had spurious parts and when asked about it, they don't respond. The RAM was unbranded and incorrect frequency (used 1033 Mhz instead of 1600 for this model). The charger was spurious and also had issues providing correct voltage. The screen had dead pixels but was still called certified refurbished. The only saving grace was the appearance which was not too bad. Hence please don't order high RAM and hard disk/ SSD config from these guys as they are spurious anyway. Please expect to spend more money on hard disk/ ssd, RAM, charger, battery. as all of these will be spurious . If sold for 20k levels, this becomes a bargain as we can easily change RAM and HDD by just taking off the user removable cover.\n seller rentopcdotcom offer poor qualiti refurbish item purchas laptop hp elitebook 840g1 laptop spuriou part ask dont respond ram unbrand incorrect frequenc use 1033 mhz instead 1600 model charger spuriou also issu provid correct voltag screen dead pixel still call certifi refurbish save grace appear bad henc pleas dont order high ram hard disk ssd config guy spuriou anyway pleas expect spend money hard disk ssd ram charger batteri spuriou sold 20k level becom bargain easili chang ram hdd take user remov cover\n Negative 144 seller rentopcdotcom poor quality items laptop hp elitebook 840g1 laptop spurious parts ram unbranded incorrect frequency mhz model charger spurious issues correct voltage screen dead pixels only grace appearance bad high ram hard disk/ ssd config guys spurious more money hard disk/ ssd ram charger battery spurious 20k levels bargain ram hdd user removable cover
2215 Laptop is perfectly working but second battery is missing, pls arrane to send on priority.\n laptop perfectli work second batteri miss pl arran send priority\n Negative 16 laptop second battery arrane priority
2216 Was really bad.... And worst too. Because within 3 months so many problems occurred. Now I am still stuck.\n realli bad worst within 3 month mani problem occur still stuck\n Negative 19 bad worst months many problems
2217 This is very unusable because I returned it so they said it does not replace or returned\n unus return said replac returned\n Neutral 17 unusable
2218 The renewed laptop that was delivered was in a poor condition with scratches all over. There was even a small crack on the top of the lid. I was okay with all that after all it was a renewed one. But once I started using it realised the battery of the laptop wasn't in a good condition too. Can only be used when plugged in and turns off instantly when disconnected from the plug.\n renew laptop deliv poor condit scratch even small crack top lid okay renew one start use realis batteri laptop wasnt good condit use plug turn instantli disconnect plug\n Negative 74 laptop poor condition scratches small crack top lid okay one battery laptop good condition plug
2219 I have received a worth product. The seller of the product is selling the finest and quality worth product.\n receiv worth product seller product sell finest qualiti worth product\n Positive 19 worth product seller product finest quality worth product
2220 The product expected to be good but it arrived as damaged,\n product expect good arriv damaged\n Neutral 11 product good
2221 This lap top is good if we are using 4gb redeon graphics or Nvidia graphics. Don't go AMD Radeon 2gb graphics really it's waste otherwise u can go with integrated graphics Intel uhd 520 .one more thing what ever they mentioned about 2gb graphics it's wrong they mentioned 530 tesdeon but it's 320 readon it's really cheating customer\n lap top good use 4gb redeon graphic nvidia graphic dont go amd radeon 2gb graphic realli wast otherwis u go integr graphic intel uhd 520 one thing ever mention 2gb graphic wrong mention 530 tesdeon 320 readon realli cheat customer\n Negative 58 lap top good gb redeon graphics nvidia graphics amd radeon gb graphics waste integrated graphics intel uhd .one more thing gb graphics wrong tesdeon readon customer
2222 Sound and build quality needs to be improved. Working wonderfully with SSD installed at place of HDD. HDD replaced on SATA DVD drive with caddy. RAM upgrade upto 16 X 2 GB possible. Go for extended warranty.\n sound build qualiti need improv work wonder ssd instal place hdd hdd replac sata dvd drive caddi ram upgrad upto 16 x 2 gb possibl go extend warranty\n Positive 37 quality ssd place hdd hdd sata dvd drive caddy ram upgrade upto possible extended warranty
2223 The best laptop with HP Quality & CS which can be provided at this range.From mid-gaming to programming - specially when running Android Studio , it doesn't lag.Sound is also great, it provides 30% minimum sound at it's max compared to a 30Watt 2.1When you've turned up the power saver mode (in case using Windows) , it provides standby hoto 8 hours. In case ,its fully charged, I can full-charge my Nokia 5.1 by USB in standby 3+ times.If you want to unleash full power of this beast, you need to attach one 128/256GB SSD and one 8GB ram more & you're good to go!\n best laptop hp qualiti cs provid rangefrom midgam program special run android studio doesnt lagsound also great provid 30 minimum sound max compar 30watt 21when youv turn power saver mode case use window provid standbi hoto 8 hour case fulli charg fullcharg nokia 51 usb standbi 3 timesif want unleash full power beast need attach one 128256gb ssd one 8gb ram your good go\n Positive 105 best laptop hp quality cs range.from mid - gaming programming android studio great % minimum sound max 30watt power saver mode case windows standby hoto hours case full charge nokia usb standby 3 times.if full power beast 128/256 gb ssd gb ram good
2224 + Best laptop at this range+ Better performance+ Value for money+ Built-in intel grphics is perfect+ Better battery performance+Processing speed is better(for developers)+ Sound quality is perfect,but- Low volume- amd Radeon 2 gb is not necessary,as compare with Built-in Intel graphics- performance becomes weak when battery beloww 10%USB port will be easily damageable,my 2 3.0 ports partially damagedAfter all,buy it now....😍😍😍\n best laptop rang better perform valu money builtin intel grphic perfect better batteri performanceprocess speed betterfor develop sound qualiti perfectbut low volum amd radeon 2 gb necessarya compar builtin intel graphic perform becom weak batteri beloww 10usb port easili damageablemi 2 30 port partial damagedaft allbuy now😍😍😍\n Positive 64 best laptop range+ better performance+ value money+ intel grphics better battery performance+processing speed developers)+ sound quality perfect but- low volume- amd radeon gb necessary intel graphics- performance weak battery beloww port damageable ports
2225 Don't buy products from HP because they have a worst after sale service. Laptop is made up of low quality material. They will never repair your products under warranty. 8 months use experience. The laptop gets heated up low battery backup (2 -3 hrs power Backup). The screen resolutions is not up-to mark.\n dont buy product hp worst sale servic laptop made low qualiti materi never repair product warranti 8 month use experi laptop get heat low batteri backup 2 3 hr power backup screen resolut upto mark\n Negative 53 products hp worst sale service laptop low quality material products warranty months experience laptop low battery backup hrs power backup screen resolutions
2226 Good laptop with great configuration. Fast delivery by Amazon, laptop built quality is not that much great (I used dell before this so comparatively low) camera is decent for video calls, overall go for it.....\n good laptop great configur fast deliveri amazon laptop built qualiti much great use dell compar low camera decent video call overal go it\n Positive 35 good laptop great configuration fast delivery amazon laptop quality great dell low camera decent video calls
2227 Yeah. It’s good to use. So far no complaints. But one thing is it would be good if it comes with windows installation\n yeah it’ good use far complaint one thing would good come window installation\n Positive 23 good complaints thing good windows installation
2228 Sound System good.but battery life is low...worth buying due to less or price and great specification.Brightness problem is seen\n sound system goodbut batteri life lowworth buy due less price great specificationbright problem seen\n Positive 19 sound system good.but battery life low worth buying less price great specification.brightness problem
2229 Good configuration.\n good configuration\n Positive 2 good configuration
2230 Excellent Product. Core i5 with the latest 8th gen family.. Look and performance are good.\n excel product core i5 latest 8th gen famili look perform good\n Positive 16 excellent product core i5 latest 8th gen family look performance good
2231 I like the product and this laptop is working fine and good\n like product laptop work fine good\n Positive 12 product laptop good
2232 I’m happy with my new laptop\n i’m happi new laptop\n Neutral 6 m happy new laptop
2233 Nice quality of laptop from hp\n nice qualiti laptop hp\n Positive 6 nice quality laptop hp
2234 Nice product worth go it's cost\n nice product worth go cost\n Positive 6 nice product worth cost
2235 AMD 520 Graphics card is same as m330 i am using it from month of february ...it works fine..yes battery chargr will decrease if you play high graphics game or high graphics needed application...but it has a pros that 90% in 90 min so it is just awesome...i played gta 5 in medium graphics and pubg also....it works fine...go for it....and try to buy this from offline stores...i hv to pay just 44500 for this ..\n amd 520 graphic card m330 use month februari work finey batteri chargr decreas play high graphic game high graphic need applicationbut pro 90 90 min awesomei play gta 5 medium graphic pubg alsoit work finego itand tri buy offlin storesi hv pay 44500 \n Positive 77 amd graphics card same m330 month february fine battery chargr high graphics game high graphics application pros % min awesome gta medium graphics pubg offline stores
2236 Dont buy HP products with plastic hinges.I bought this laptop and I had to change it's broken hinges three times within one year. This is not after a rough use of the product, but normal use. I am very disappointed with this HP product. For making the laptops lighter they have gone for less durable parts, which makes it very delicate. Don't buy this product.\n dont buy hp product plastic hingesi bought laptop chang broken hing three time within one year rough use product normal use disappoint hp product make laptop lighter gone less durabl part make delic dont buy product\n Negative 65 hp products plastic hinges.i laptop hinges times year rough use product normal use disappointed hp product laptops lighter less durable parts delicate product
2237 I got this laptop for 45k including bag and some accessories in offline store ...coming to the laptop I am using since 4 months there is no problem with the laptop.....I would recommend this laptop if the budget is less than 47k\n got laptop 45k includ bag accessori offlin store come laptop use sinc 4 month problem laptopi would recommend laptop budget less 47k\n Negative 42 laptop 45k bag accessories offline store laptop months problem laptop laptop budget less 47k
2238 worth buying it\n worth buy it\n Positive 3 worth
2239 B e s t L a p t o p i n t h i s p r i c e r a n g e.\n b e l p p n h p r c e r n g e\n Neutral 31 b e s t l a p t o p i n t h i s p r i c e r a n g e.
2240 Its a very good laptop. I bought this for 3.9.5.0.0. Genuine product\n good laptop bought 39500 genuin product\n Positive 12 good laptop genuine product
2241 Dedicated GPU is poor than Integrated GPU. No Dolby Digital Sound System.\n dedic gpu poor integr gpu dolbi digit sound system\n Negative 12 dedicated gpu poor integrated gpu dolby digital sound system
2242 The laptop is really nice when comes to performance this one problem i faced with in less than a month buying this lap is its display my friend also has a similar model and its display is also not working with in a month\n laptop realli nice come perform one problem face less month buy lap display friend also similar model display also work month\n Positive 44 laptop nice problem less month buying lap display friend similar model display month
2243 Very good laptop from hp\n good laptop hp\n Positive 5 good laptop hp
2244 Best in it's price 👌👍\n best price 👌👍\n Positive 5 price
2245 Extraordinary speed of RAM and LED display have made this laptop feel like i7. Super item. Make sure you operate the keys gently. You can use it for at least next 10years.\n extraordinari speed ram led display made laptop feel like i7 super item make sure oper key gentli use least next 10years\n Positive 32 extraordinary speed ram display laptop i7 super item sure keys least next 10years
2246 Worst product. Never buy this laptop from Amazon. My laptop sound is not working. And very very slow. It looks they fooled. I want to return this laptop but I am. Not sure where to return. I will complain this.\n worst product never buy laptop amazon laptop sound work slow look fool want return laptop sure return complain this\n Negative 41 worst product laptop amazon laptop sound slow laptop sure
2247 It's value for money deal. Being entry-level laptop does the job for which it is made for. You can simply browse 2-3 sites, open an email, work on a single excel sheet. Not made for people who do multitasking and works on a lot of sites/sheets simultaneously.LaptopScreen Size: 15.6 InchClock Speed: 1.5GHzRAM: 4 GBHard Disk Capacity: 1TBOperating System: Windows 10OS Version: Windows 10 HomeGraphic\n valu money deal entrylevel laptop job made simpli brows 23 site open email work singl excel sheet made peopl multitask work lot sitessheet simultaneouslylaptopscreen size 156 inchclock speed 15ghzram 4 gbhard disk capac 1tboper system window 10o version window 10 homegraphic\n Positive 64 value money deal entry level laptop job sites email single excel sheet people multitasking lot sites sheets simultaneously.laptopscreen size inchclock speed gbhard disk capacity system windows 10os version windows homegraphic
2248 Processor is too slow and 2 numbers of USB Ports not working.\n processor slow 2 number usb port working\n Positive 12 processor slow numbers usb ports
2249 Very good laptop for daily use. Normal use. I use only for net.\n good laptop daili use normal use use net\n Positive 13 good laptop daily use normal use net
2250 NOT RECEIVED BAGPACK ALONG WITH THIS LAPTOPALL THE OTHER BRANDS ARE PROVIDING\n receiv bagpack along laptopal brand providing\n Neutral 12 laptopall other brands
2251 No OS was not installed I got it done by paying 700/- laptop is restarting by its self not even 6 months I bought it went to service center. Not Happy.\n os instal got done pay 700 laptop restart self even 6 month bought went servic center happy\n Positive 33 os laptop self months service center happy
2252 Better for beginners,s stylish look n slim\n better beginnerss stylish look n slim\n Positive 7 better beginners s stylish n slim
2253 I just got it delivered today and when I checked the warranty on HP website it shows 1 month left!! This is surprising for a new laptop. I have contacted HP and hope they will fix this warranty info soon.\n got deliv today check warranti hp websit show 1 month left surpris new laptop contact hp hope fix warranti info soon\n Positive 40 today warranty hp website month surprising new laptop hp warranty info
2254 This laptop have lagging problemMy fault is to purchase it and waste 22,000 rupeesIt was about only 20days to buy but it is too much lagging nowI irrited to the laptop\n laptop lag problemmi fault purchas wast 22000 rupeesit 20day buy much lag nowi irrit laptop\n Negative 32 laptop problemmy fault rupeesit much lagging nowi laptop
2255 Good for common tasks,But not good for VIDEO games,..its like slow motion,.I feel the processor lags,..\n good common tasksbut good video gamesit like slow motioni feel processor lags\n Positive 16 good common tasks good video slow motion,.i processor lags
2256 I like this product but there is one dissatisfaction about this product is there is no wifi connection in-build... I have to add this additionally... But the product is best in this range..\n like product one dissatisfact product wifi connect inbuild add addit product best range\n Positive 33 product dissatisfaction product wifi connection build product best range
2257 Recommend this to for any office work and watching movies.Sound is good,even without external speakers movies can be enjoyed as dialogues speakers are crisp and bass is moderate.\n recommend offic work watch moviessound goodeven without extern speaker movi enjoy dialogu speaker crisp bass moderate\n Positive 28 office work movies.sound good external speakers movies dialogues speakers crisp bass moderate
2258 Except windows problem everything works so nicely\n except window problem everyth work nicely\n Positive 7 windows problem
2259 Best seller .Delivered as described in the site .Packing is good. Got good pice price worthBest for home\n best seller deliv describ site pack good got good pice price worthbest home\n Positive 18 best seller site good good pice price worthbest home
2260 Value for the money I paid. Working excellently well without any issues. Delivered well before time and well packed\n valu money paid work excel well without issu deliv well time well packed\n Positive 19 value money issues time packed
2261 Good and excellent Delivered... But Windows is Uninstall..\n good excel deliv window uninstall\n Positive 8 good excellent windows uninstall
2262 We are unable now to use Microsoft features some of the options are not working show message to buyer or purchase but I m already told u have to installed os and all related drives kindly attend or given concern no\n unabl use microsoft featur option work show messag buyer purchas alreadi told u instal os relat drive kindli attend given concern no\n Negative 41 unable microsoft options show message m os drives concern
2263 I like its sound quality actully i was afraid to buy laptop from online but one of my friends suggested me amazon.and now i can believe on amazon for any product...\n like sound qualiti actulli afraid buy laptop onlin one friend suggest amazonand believ amazon product\n Positive 31 sound quality afraid laptop friends amazon product
2264 Good quality,, but lagging very much\n good qualiti lag much\n Positive 6 good quality
2265 Installed pirated OS windows 10 and performance not satisfactory.\n instal pirat os window 10 perform satisfactory\n Positive 9 pirated os windows performance satisfactory
2266 I had basically gifted this product to one of my employee, so do not know much about the quality and how it is currently working. However look wise the product was ok.\n basic gift product one employe know much qualiti current work howev look wise product ok\n Positive 32 product employee much quality wise product ok
2267 From day one I be complained with this laptop...I m trying to HP toll free no to rectify it's problem...they r asking for passcode... I m not understanding...please do help\n day one complain laptopi tri hp toll free rectifi problemthey r ask passcod understandingpleas help\n Positive 30 day laptop m hp toll free problem passcode understanding
2268 When i registered the product, it showed 8 months warranty remaining. Who will give full one year warranty?\n regist product show 8 month warranti remain give full one year warranty\n Neutral 18 product months warranty full year warranty
2269 thus product was very lower HP can u built a better then this product i want to return this\n thu product lower hp u built better product want return this\n Positive 19 product lower hp better product
2270 It lags a lot ... And built quality is wrost ... Please don't purchase this laptop.... go for Intel and other then hp brand\n lag lot built qualiti wrost pleas dont purchas laptop go intel hp brand\n Negative 28 lot quality wrost laptop intel other hp brand
2271 Laptop not working any online google, youtube the will come display PC problem and power off, "What I do" please return your laptop.\n laptop work onlin googl youtub come display pc problem power pleas return laptop\n Negative 24 laptop online google youtube display pc problem power laptop
2272 MY DAUGHTER REGULARLY USING THIS LAPTOP THERE IS EASY TO USE AND NO ANY PROBLEM PERFORMANCE IS GOOD\n daughter regularli use laptop easi use problem perform good\n Positive 18 daughter laptop easy problem performance good
2273 Completely waste of money don’t buy this\n complet wast money don’t buy this\n Neutral 8 waste money don t
2274 Not buy\n buy\n Neutral 2
2275 Value for moneyI bought this this HP Dos laptop at 17000 at Great Indian Festival offer\n valu moneyi bought hp do laptop 17000 great indian festiv offer\n Positive 16 value moneyi hp dos laptop great indian festival offer
2276 useful and serving well.\n use serv well\n Positive 4 useful
2277 Slow\n slow\n Neutral 1 slow
2278 I like you\n like you\n Positive 3
2279 This laptop quality it's not good. So hang on this on work. Battery backup also low.\n laptop qualiti good hang work batteri backup also low\n Positive 16 laptop quality good work battery backup low
2280 Processor is 1.5 GHz not 1.8 GHz\n processor 15 ghz 18 ghz\n Neutral 8 processor ghz ghz
2281 Normal screen but in this budget goodWindows not installed\n normal screen budget goodwindow installed\n Neutral 9 normal screen budget goodwindows
2282 While gaming its over heating.....Battery life is max. 3.5 hr\n game heatingbatteri life max 35 hr\n Neutral 10 heating battery life max hr
2283 Average quality\n averag quality\n Neutral 2 average quality
2284 Value for money,but it's very slower.\n valu moneybut slower\n Neutral 6 value money slower
2285 viry Good product and lost price in amazon\n viri good product lost price amazon\n Positive 8 viry good product price amazon
2286 Excellent product, Very strong, good For Ruf use.\n excel product strong good ruf use\n Positive 8 excellent product strong good ruf use
2287 System very slow.. Display going blank automatically\n system slow display go blank automatically\n Neutral 10 system slow display blank
2288 Seems ok\n seem ok\n Positive 2 ok
2289 My laptop is not charging.my laptop is under warranty\n laptop chargingmi laptop warranty\n Neutral 9 laptop charging.my laptop warranty
2290 I need a purchase bill hardcopy\n need purchas bill hardcopy\n Neutral 6 purchase bill hardcopy
2291 Poor quality. Charger failed to work within 2 months.\n poor qualiti charger fail work within 2 months\n Negative 9 poor quality charger months
2292 Laptop is best but uske sath CD nhi aayi h h motherboard ki\n laptop best usk sath cd nhi aayi h h motherboard ki\n Positive 13 laptop best uske sath cd nhi aayi h h motherboard ki
2293 Value of money\n valu money\n Neutral 3 value money
2294 wonderful laptop from HP in this price range.\n wonder laptop hp price range\n Neutral 8 wonderful laptop hp price range
2295 It is very slow, it takes time for processing\n slow take time processing\n Neutral 9 slow time processing
2296 I use this past 4 months it's Work properly\n use past 4 month work properly\n Neutral 9 past months work
2297 Because working time system it's to hot\n work time system hot\n Neutral 7 time system hot
2298 It totally waste plzzzzzzzzz dont buy it\n total wast plzzzzzzzzz dont buy it\n Neutral 7 plzzzzzzzzz
2299 'Worst product' = gets hot quickly\n worst product get hot quickly\n Negative 6 worst product hot
2300 Not good\n good\n Positive 2 good
2301 Frequently auto restarting and hanging up\n frequent auto restart hang up\n Neutral 6 auto
2302 I want to revise my invoive\n want revis invoive\n Positive 6 invoive
2303 In this price very good\n price good\n Positive 5 price good
2304 Nice experience\n nice experience\n Positive 2 nice experience
2305 Nice long life\n nice long life\n Positive 3 nice long life
2306 Not, bad\n bad\n Negative 2 bad
2307 awesome\n awesome\n Positive 1 awesome
2308 gooooddddd\n gooooddddd\n Neutral 1 gooooddddd
2309 Speed is so slow\n speed slow\n Neutral 4 speed slow
2310 Very slow processor\n slow processor\n Neutral 3 slow processor
2311 It don't have ms office\n dont ms office\n Neutral 5 ms office
2312 not worked properly\n work properly\n Neutral 3
2313 Battery life\n batteri life\n Neutral 2 battery life
2314 Very bad prodect\n bad prodect\n Negative 3 bad prodect
2315 Happy\n happy\n Positive 1 happy
2316 Bad product waste of money\n bad product wast money\n Negative 5 bad product waste money
2317 Good Quality..!!\n good quality\n Positive 2 good quality
2318 I don't like it. Your product is not good checkout the problem.\n dont like product good checkout problem\n Negative 12 product good checkout problem
2319 I purchased this laptop before 10 days. i installed window 10. this laptop's performance is pathetic, so slow.taking more than 5 mins in restart .I would suggest not purchase this one even in low budget .\n purchas laptop 10 day instal window 10 laptop perform pathet slowtak 5 min restart would suggest purchas one even low budget \n Negative 37 laptop days window laptop performance pathetic more mins restart one low budget
2320 Amazing product tq amazan i love amazan\n amaz product tq amazan love amazan\n Positive 8 amazing product amazan amazan
2321 Parts missing driver CD ni mili na hi window installed\n part miss driver cd ni mili na hi window installed\n Negative 10 parts driver cd ni mili na hi window
2322 Iske saath aapko Windows 10 installed nhi denge, ye laptop bhut jaldi over heat ho jata hai aur ye bhut slow bhi chalta hai.\n isk saath aapko window 10 instal nhi deng ye laptop bhut jaldi heat ho jata hai aur ye bhut slow bhi chalta hai\n Neutral 24 iske saath windows nhi denge ye laptop bhut jaldi heat ho jata hai aur ye bhut slow bhi chalta hai
2323 always hanging for any software like vlc player media player etc,windows 10 in not working properly in this laptop.while if you purchase this model 1st you should update all the drivers from hp website after that amd graphic card will not work properly.it shows video_tdr_failure blue screen will come.waste of money............\n alway hang softwar like vlc player media player etcwindow 10 work properli laptopwhil purchas model 1st updat driver hp websit amd graphic card work properlyit show videotdrfailur blue screen comewast money\n Positive 52 software vlc player media player windows laptop.while model 1st drivers hp website amd graphic card blue screen money
2324 Amazon is amazing.. All features in lowest price.\n amazon amaz featur lowest price\n Negative 8 amazon amazing features lowest price
2325 Looks too delicate and it doesn't have any led indicator to identify whether it is turned on/off. It will be good those who are strictly on budget\n look delic doesnt led indic identifi whether turn onoff good strictli budget\n Positive 28 delicate indicator off good budget
2326 The Given specs on site here and delivered specs 100% matches, spent little bucks in the market place for OS installations n drivers,installed win8.1,working pretty smooth without any lags,battery charging period is super fast and lasts more than 5 hrs for mixed useage (media n online browsing)wifi is superfast.excellent,\n given spec site deliv spec 100 match spent littl buck market place os instal n driversinstal win81work pretti smooth without lagsbatteri charg period super fast last 5 hr mix useag media n onlin browsingwifi superfastexcellent\n Positive 49 specs site specs % matches little bucks market place os installations n drivers win8.1,working smooth lags battery charging period fast more mixed useage media n online browsing)wifi superfast.excellent
2327 Good laptop as a price thanks Amazon.\n good laptop price thank amazon\n Positive 7 good laptop price thanks amazon
2328 Patheric laptop from HP...this laptop will give you a feel of using 18 uears old mod range comupter\n pather laptop hpthi laptop give feel use 18 uear old mod rang comupter\n Neutral 18 patheric laptop hp laptop feel uears old mod range comupter
2329 Have a problem of installing laptop driver and not working properly.. 🙁 And couldn't use usb 3.0 port from the very beginning.\n problem instal laptop driver work properli 🙁 couldnt use usb 30 port beginning\n Negative 22 problem laptop driver usb port very beginning
2330 All working condion of hp laptop is exelent accept its vedio showing working.there is big prblm in vedio showing.I hope u will take prompt action.\n work condion hp laptop exel accept vedio show workingther big prblm vedio showingi hope u take prompt action\n Positive 25 condion hp laptop exelent vedio working.there big prblm vedio showing.i hope prompt action
2331 value for money product\n valu money product\n Neutral 4 value money product
2332 It's worst lap don't buy anyone ....\n worst lap dont buy anyon \n Negative 7 worst lap
2333 Very good product, good quality, in time deliveryBest Price I like this amazon products\n good product good qualiti time deliverybest price like amazon products\n Positive 14 good product good quality time deliverybest price amazon products
2334 Good. But picture resolution is not good.\n good pictur resolut good\n Positive 7 good picture resolution good
2335 good product at 10000\n good product 10000\n Positive 4 good product
2336 Driver issue\n driver issue\n Neutral 2 driver issue
2337 Good hardware functions. Lightweight and have a touchscreen too. But there is no Windows 10 OS installed. I think the seller should tell that in the product description. Even the setup guide also shows various features of Windows 10 operating system.\n good hardwar function lightweight touchscreen window 10 os instal think seller tell product descript even setup guid also show variou featur window 10 oper system\n Positive 41 good hardware functions lightweight touchscreen windows os seller product description setup guide various features windows operating system
2338 i recived that product on tuesday its very good laptop for lover price i recomed amy to buy this and also the pakeging of product is very good thanku so much amazon i am very happy with your service\n reciv product tuesday good laptop lover price recom ami buy also pakeg product good thanku much amazon happi service\n Positive 39 product tuesday good laptop lover price amy pakeging product good thanku amazon happy service
2339 Laptop is not work properly.Some thing is wrong in system.\n laptop work properlysom thing wrong system\n Negative 11 laptop work properly.some thing wrong system
2340 Laptop performance goodHitshink fan not available in this laptopRam slot 1 ddr4Charging quick\n laptop perform goodhitshink fan avail laptopram slot 1 ddr4charg quick\n Positive 13 laptop performance goodhitshink fan available laptopram slot ddr4charging quick
2341 very slow processor contains a lot of lag in its functioning\n slow processor contain lot lag functioning\n Negative 11 slow processor lot lag functioning
2342 Wrost product I have ever purchased from amazon . While browsing internet restart automatically . Processor 1.5 GHZ instead of 1.8 GHZ\n wrost product ever purchas amazon brows internet restart automat processor 15 ghz instead 18 ghz\n Positive 22 wrost product amazon internet restart processor ghz ghz
2343 What a crap !!!!!!! I didn't like the product at all. Beat it Product ,Service,Price need to get everything from outside ex : There were no windows installed(atleast you people should provide a CD) , No Goody Bag, As i can see out they are providing everything in a very less amount compare from online.I would suggest everyone please compare and then Buy.\n crap didnt like product beat product servicepric need get everyth outsid ex window installedatleast peopl provid cd goodi bag see provid everyth less amount compar onlinei would suggest everyon pleas compar buy\n Negative 64 crap product product service price outside ex windows people cd goody bag less amount compare
2344 Everything is fine but very slow processor..... You need very Patience to perform any task\n everyth fine slow processor need patienc perform task\n Positive 15 fine slow processor patience task
2345 because of Brand & It Give Duribility For use business purposes. ( But not in Faster installment & And Data browser.) Because It doesn't give Dual core. Behalf of this case..If Windows & Free DOS 2.0.. Work well...Then this Laptop will be equal to Dual Core processor Laptop.That is why a , I Like this Laptop.It has Windows + DOS 2.0 processor.\n brand give duribl use busi purpos faster instal data browser doesnt give dual core behalf caseif window free do 20 work wellthen laptop equal dual core processor laptopthat like laptopit window do 20 processor\n Positive 63 brand duribility use business purposes faster installment data browser dual core behalf case windows free dos work laptop equal dual core processor laptop.that laptop.it windows dos processor
2346 I bought laptop last friday.it was really bad.while I was using the laptop..it was suddenly stopped and restarting..it was strucking more.\n bought laptop last fridayit realli badwhil use laptopit suddenli stop restartingit struck more\n Negative 21 laptop last friday.it bad.while laptop more
2347 Yes The Laptop is okey, working good, If Driver CD/DVD not availed with the product... This is only very bad..ALSO I COULD NOT AVAILED till now 10% CASH BACK for VISA DEBIT CARD (COD) From the AMAZON..Please look into the matter..thanks\n ye laptop okey work good driver cddvd avail product badalso could avail till 10 cash back visa debit card cod amazonpleas look matterthanks\n Positive 41 laptop okey good driver cd dvd product bad % cash visa debit card cod amazon matter thanks
2348 Overall sytem is not good after 5 minut laptop restart don't buysound quality not good very bad product i loosed my money\n overal sytem good 5 minut laptop restart dont buysound qualiti good bad product loos money\n Positive 22 overall sytem good minut laptop restart quality good bad product money
2349 The screen of the laptop had to be replaced recently, within a very short time after purchasing the item. A cost of Rs.4000 was incurred for this. The screen was not covered in the warranty.\n screen laptop replac recent within short time purchas item cost rs4000 incur screen cover warranty\n Neutral 35 screen laptop short time item cost rs.4000 screen warranty
2350 The warranty papers and user manual are missing. The box does not contain those important papers\n warranti paper user manual miss box contain import papers\n Negative 16 warranty papers user manual box important papers
2351 The laptop is a total water if money. Don't buy it... It keeps restarting every two minutes.. Even after I changed the OS many times, same problem happens...\n laptop total water money dont buy keep restart everi two minut even chang os mani time problem happens\n Negative 29 laptop total water money minutes os many times same problem
2352 I purchased this laptop in 2019. Compared to my 10 year old Hp laptop, It is Sound, and camera quality is very poor.\n purchas laptop 2019 compar 10 year old hp laptop sound camera qualiti poor\n Negative 23 laptop year old hp laptop sound camera quality poor
2353 Dear sirKindly requestI need invoices ugrently ( Leptop )HP 15 BW098AU 2018 15.6-inch\n dear sirkindli requesti need invoic ugrent leptop hp 15 bw098au 2018 156inch\n Positive 14 dear need invoices leptop hp bw098au
2354 Nice product.. Thanks to Amazon for offering discounts..\n nice product thank amazon offer discounts\n Positive 8 nice product thanks amazon discounts
2355 Ram change and coast minimum change I purchase it\n ram chang coast minimum chang purchas it\n Neutral 9 change coast minimum change
2356 Don't take any one please\n dont take one please\n Negative 5 one
2357 Best 2 buy in 25k\n best 2 buy 25k\n Positive 5 best buy 25k
2358 Operating system are good\n oper system good\n Positive 4 operating system good
2359 very nice\n nice\n Positive 2 nice
2360 EMI process acchha hai ki nei.... is this laptop is working good or not .... this's my qs not review.... agar mjhe EMI axis bankke debit card se lena hai tho kya monthly 1000 mere bank ac me rehne se EMI process se me lap le paunga\n emi process acchha hai ki nei laptop work good thiss qs review agar mjhe emi axi bankk debit card se lena hai tho kya monthli 1000 mere bank ac rehn se emi process se lap le paunga\n Positive 49 emi process acchha hai ki nei laptop good qs agar mjhe emi axis bankke debit card se lena hai tho kya monthly mere bank rehne se process lap le paunga
2361 service &product best then other\n servic product best other\n Positive 5 service product other
2362 Genuine product,i couldnt find any laptop at this price with windows10 pre installed.This one could be used for browsing and to work on MS office.Heavy gaming may not work with this configuration.Thank you.\n genuin producti couldnt find laptop price windows10 pre installedthi one could use brows work ms officeheavi game may work configurationthank you\n Neutral 33 genuine product laptop price windows10 installed.this browsing ms office.heavy gaming configuration.thank
2363 The product came with a virus! Am having the time of my life trying to use this horrid machine. Do NOT buy.\n product came viru time life tri use horrid machin buy\n Negative 22 product virus time life horrid machine
2364 Laptop is good. But there not give any product key so you can't open Microsoft.\n laptop good give product key cant open microsoft\n Positive 15 laptop good product key microsoft
2365 We need to install Microsoft and vlc media for this laptop when it is a basic thing to be there in every laptop\n need instal microsoft vlc media laptop basic thing everi laptop\n Neutral 23 microsoft vlc media laptop basic thing laptop
2366 Just four months of use and it’s lagging badly.\n four month use it’ lag badly\n Negative 9 months use
2367 Good As expected\n good expected\n Positive 3 good
2368 very good product\n good product\n Positive 3 good product
2369 Can't even use to play cd or games\n cant even use play cd games\n Negative 8 cd games
2370 Its good\n good\n Positive 2 good
2371 I've been using this for past one month.Pros-Fast charging and workingSleek designNice speakerCons-It heats up pretty quickly when you convert it into tab mode because the fan outlet at back get coverd with back of the screen.It easily get pretty warm if you put it on bed. It constantly needs to let the fan pump out the warm air. So user needs to use it without blocking any fan space.If you are buying only for designing purpose.. Please don't. Stylus pen isn't that great as well.. I would say above average but not precise.For entertainment purposes-you can definitely do better than this for this price.\n ive use past one monthprosfast charg workingsleek designnic speakerconsit heat pretti quickli convert tab mode fan outlet back get coverd back screenit easili get pretti warm put bed constantli need let fan pump warm air user need use without block fan spaceif buy design purpos pleas dont stylu pen isnt great well would say averag precisefor entertain purposesy definit better price\n Positive 107 past month.pros charging workingsleek designnice speakercons tab mode fan outlet coverd back screen.it warm bed fan warm air user fan space.if purpose stylus pen great average entertainment purposes price
2372 With premium fit and finish to go with all the features mentioned, this model is a good combination of both form and functionality. The only grouse was that there was some lag initially while booting up, but that seems to have gone away on its own now. Also, it's only been a few weeks since I've been using it, so I can't speak for its durability. This particular piece is a replacement piece - the original one that was delivered refused to start! So am a little worried - my experience with HP products has been great in the past, so let's hope this one also continues to reinforce that.\n premium fit finish go featur mention model good combin form function grous lag initi boot seem gone away also week sinc ive use cant speak durabl particular piec replac piec origin one deliv refus start littl worri experi hp product great past let hope one also continu reinforc that\n Positive 110 premium fit features model good combination form functionality only grouse lag own few weeks durability particular piece replacement piece original one little worried experience hp products great past one
2373 Excellent productLike working on it ...it's so far the best laptop I ever had ..it's very fast\n excel productlik work far best laptop ever fast\n Positive 17 excellent productlike best laptop fast
2374 Enormous heating and slow..looking great but performance wise over budget laptop..And sound stopped working after 1 month use..no way to return the product..pathetic..really disappointed this time with amazon.will never ever buy any product here\n enorm heat slowlook great perform wise budget laptopand sound stop work 1 month useno way return productpatheticr disappoint time amazonwil never ever buy product here\n Positive 34 enormous heating slow great performance wise budget laptop sound month use way product pathetic disappointed time amazon.will product
2375 1. Wibdows 10 version preloaded is customized with auto update which is consuming my everyday net pack of 1.5 GB a and not allowing me to do any of my personal work2. I am not able to create further disk partitions which I am in need.3. Antivirus, anti malware, anti adware pack was found to have trial version now it is expired.\n 1 wibdow 10 version preload custom auto updat consum everyday net pack 15 gb allow person work2 abl creat disk partit need3 antiviru anti malwar anti adwar pack found trial version expired\n Negative 63 wibdows version auto update everyday net pack personal work2 able further disk partitions need.3 antivirus anti malware anti adware pack trial version
2376 In just 7 months, the fan started making big shhooooo kind of sound and extremely over heating on left side. The HP technician replaced the fan, but problem not resolved. While replacing it he had to open out the motherboard and battery and it was pathetic to watch such a costly laptop requiring such repairs.I have asked for replacement. Let me see how HP responds now.\n 7 month fan start make big shhooooo kind sound extrem heat left side hp technician replac fan problem resolv replac open motherboard batteri pathet watch costli laptop requir repairsi ask replac let see hp respond now\n Positive 66 months fan big shhooooo sound heating left side hp technician fan problem motherboard battery pathetic costly laptop such repairs.i replacement hp
2377 Bought Laptop 1 month back. When trying to draw straight line, its converting into heartbeat shape.Tried contacting Amazon, HP support, they asked to send video and connected through remote. Technician visited and found that problem exists. Its been more than 1 week and still expecting resolution. They are clueless about the problem and resolution. Never felt this helpless.\n bought laptop 1 month back tri draw straight line convert heartbeat shapetri contact amazon hp support ask send video connect remot technician visit found problem exist 1 week still expect resolut clueless problem resolut never felt helpless\n Neutral 58 laptop month straight line converting heartbeat amazon hp support video remote technician problem more week resolution clueless problem resolution helpless
2378 Good one 5 star 🌟\n good one 5 star 🌟\n Positive 5 good star
2379 Best product\n best product\n Positive 2 best product
2380 A very good 2 in 1 hybrid with all necessary features and better compared to Dell 7373.\n good 2 1 hybrid necessari featur better compar dell 7373\n Positive 17 good hybrid necessary features dell
2381 At this price this is the best laptop you can get\n price best laptop get\n Positive 11 price best laptop
2382 Good but processing is slow\n good process slow\n Positive 6 good processing slow
2383 Superb buy. Working really great. Good battery backup. Awesome screen. Touch mode makes it easy for browsing.\n superb buy work realli great good batteri backup awesom screen touch mode make easi browsing\n Positive 17 superb good battery backup awesome screen mode easy browsing
2384 Bad battery backup, Dell i7 is good at same prices\n bad batteri backup dell i7 good prices\n Negative 10 bad battery backup dell i7 good same prices
2385 The laptop worked well for a few weeks... the stylus stopped functioning within a few days...The laptop gets hanged continuously. Doesn't start at times.Worst product ever!!!Raised hp help desk ticket... But not getting any response.Amazon's quality of products has degraded..I want my money back !\n laptop work well week stylu stop function within daysth laptop get hang continu doesnt start timesworst product everrais hp help desk ticket get responseamazon qualiti product degradedi want money back \n Positive 46 laptop few weeks stylus few days laptop times.worst product hp desk ticket response.amazon quality products money
2386 Disappointed. On paper specs look impressive but in real time performance it is v slow and v v disappointed. Not sure if the problem is just with my unit or the model itself is like this\n disappoint paper spec look impress real time perform v slow v v disappoint sure problem unit model like this\n Negative 36 disappointed paper specs impressive real time performance v slow v v disappointed sure problem unit model
2387 Just within 20 days of purchase, i am experience electric shock as i connect my laptop to power supply\n within 20 day purchas experi electr shock connect laptop power supply\n Negative 19 days purchase experience electric shock laptop power supply
2388 Pathetic product. I switched it on for the first time out of the box and it gave me a System Fan 90B error message. I’m sorting this with Amazon now having to go their tedious process. I regret having purchased a HP and for having used Amazon for buying this useless product\n pathet product switch first time box gave system fan 90b error messag i’m sort amazon go tediou process regret purchas hp use amazon buy useless product\n Negative 52 pathetic product first time box system fan 90b error message amazon tedious process hp amazon useless product
2389 Check my channel "drtechnno" on utube for detailed review of this model.I have checked it's sound, stylus, screen, touchpad in independent videos.Do have a look for\n check channel drtechnno utub detail review mode check sound stylu screen touchpad independ videosdo look for\n Neutral 26 channel drtechnno utube detailed review model.i sound stylus screen touchpad independent look
2390 Sound system not working and no one is supporting.Worst experience faced. We should not purchase from Amazon if I don't get support\n sound system work one supportingworst experi face purchas amazon dont get support\n Negative 23 sound system one supporting.worst experience amazon support
2391 Really one of the best and quality is also good.\n realli one best qualiti also good\n Positive 10 best quality good
2392 Though it gives you less configurations but those are worth it and the laptop works best of it\n though give less configur worth laptop work best it\n Positive 18 less configurations worth laptop best
In [46]:
bigrams = nltk.collocations.BigramAssocMeasures()

## Concat all the positive reviews

positive_reviews_concat=" ".join(positive_reviews)
positive_reviews_tokens=positive_reviews_concat.split(" ")

### Create a bigram Finder
positive_bigramFinder = nltk.collocations.BigramCollocationFinder.from_words(positive_reviews_tokens)


bigram_freq_positive= positive_bigramFinder.ngram_fd.items()

bigram_freq_positive_df=pd.DataFrame()
bigram_freq_positive_df['word']=[val[0] for val in bigram_freq_positive]
bigram_freq_positive_df['freq']=[val[1] for val in bigram_freq_positive]

bigram_freq_positive_df= bigram_freq_positive_df.sort_values('freq',ascending=False)
#bigram_freq_positive_df.head()
In [47]:
## Concat all the positive reviews

negative_reviews_concat=" ".join(Negative_reviews)
negative_reviews_tokens=negative_reviews_concat.split(" ")

### Create a bigram Finder
negative_bigramFinder = nltk.collocations.BigramCollocationFinder.from_words(negative_reviews_tokens)


bigram_freq_negative= negative_bigramFinder.ngram_fd.items()

bigram_freq_negative_df=pd.DataFrame()
bigram_freq_negative_df['word']=[val[0] for val in bigram_freq_negative]
bigram_freq_negative_df['freq']=[val[1] for val in bigram_freq_negative]

bigram_freq_negative_df= bigram_freq_negative_df.sort_values('freq',ascending=False)
#bigram_freq_positive_df.head()
In [48]:
bigram_freq_positive_df.head(20)
Out[48]:
word freq
472 (batteri, life) 120
638 (light, weight) 81
1054 (ms, offic) 78
307 (window, 10) 77
692 (good, product) 70
641 (good, laptop) 69
467 (valu, money) 54
1968 (batteri, backup) 49
1520 (gb, ram) 46
477 (laptop, good) 42
2186 (good, batteri) 37
2809 (best, laptop) 37
1433 (product, good) 36
291 (sound, qualiti) 31
2003 (touch, screen) 30
1527 (8, gb) 30
1673 (8gb, ram) 29
1324 (4gb, ram) 29
1519 (4, gb) 29
1656 (laptop, price) 29
In [49]:
bigram_freq_negative_df.head(20)
Out[49]:
word freq
197 (dont, buy) 32
289 (worst, product) 27
598 (worst, laptop) 19
579 (window, 10) 15
940 (bad, product) 13
361 (batteri, backup) 13
290 (product, hp) 13
596 (bad, experi) 13
924 (buy, laptop) 13
255 (batteri, life) 11
3551 (purchas, laptop) 10
433 (hp, laptop) 10
180 (dead, slow) 10
248 (use, laptop) 10
196 (pleas, dont) 9
2579 (hard, disk) 9
701 (work, properli) 9
1127 (wast, money\n) 9
107 (wast, money) 9
542 (hp, product) 8
In [50]:
bigram_pmi_positive=positive_bigramFinder.score_ngrams(bigrams.pmi)
bigram_pmi_negative=negative_bigramFinder.score_ngrams(bigrams.pmi)
In [51]:
bigram_pmi_positive_df=pd.DataFrame()
bigram_pmi_positive_df['word']=[val[0] for val in bigram_pmi_positive]
bigram_pmi_positive_df['pmi']=[val[1] for val in bigram_pmi_positive]

bigram_pmi_positive_df= bigram_pmi_positive_df.sort_values('pmi',ascending=False)
#bigram_freq_positive_df.head()
In [52]:
bigram_pmi_positive_df.head()
Out[52]:
word pmi
0 (1008, dh1010) 15.03849
361 (provis, 0000000001) 15.03849
329 (passcod, understandingpleas) 15.03849
328 (partial, damagedaft) 15.03849
327 (pais, dene) 15.03849
In [53]:
## Merging the Frequency and PMI Dataframe for Positive Reviews
In [54]:
positive_bigram=pd.merge(bigram_pmi_positive_df,bigram_freq_positive_df,on='word')
In [55]:
positive_bigram.head(10)
Out[55]:
word pmi freq
0 (1008, dh1010) 15.03849 1
1 (provis, 0000000001) 15.03849 1
2 (passcod, understandingpleas) 15.03849 1
3 (partial, damagedaft) 15.03849 1
4 (pais, dene) 15.03849 1
5 (painbut, donefirst) 15.03849 1
6 (packageproslight, weightdec) 15.03849 1
7 (pacak, safecom) 15.03849 1
8 (p1, systemmost) 15.03849 1
9 (overmor, glass) 15.03849 1

Merge the frequency and PMI values for the posoitove reviews and create new column which multplies PMI and frequency

In [56]:
positive_bigram['pmi_freq']=positive_bigram['pmi']*positive_bigram['freq']
positive_bigram=positive_bigram.sort_values('pmi_freq',ascending=False)
In [57]:
positive_bigram.head(20)
Out[57]:
word pmi freq pmi_freq
12210 (batteri, life) 6.511991 120 781.438936
10213 (light, weight) 7.284098 81 590.011914
10251 (ms, offic) 7.270645 78 567.110346
11743 (window, 10) 6.694483 77 515.475171
9490 (valu, money) 7.520457 54 406.104653
12396 (batteri, backup) 6.426261 49 314.886802
13290 (gb, ram) 6.096486 46 280.438352
8774 (8, gb) 7.763608 30 232.908226
10696 (4, gb) 7.088513 29 205.566870
12237 (touch, screen) 6.494943 30 194.848288
9185 (valu, money\n) 7.631818 25 190.795441
12171 (8gb, ram) 6.534528 29 189.501300
13790 (sound, qualiti) 5.886124 31 182.469836
12924 (4gb, ram) 6.206473 29 179.987728
22417 (good, product) 2.469747 70 172.882293
12905 (price, rang) 6.219967 27 167.939119
12375 (price, point) 6.431160 23 147.916681
8136 (ryzen, 3) 8.043508 18 144.783152
6439 (custom, care) 8.723341 16 139.573453
6740 (watch, movi) 8.601779 16 137.628461

Topic modelling

In [60]:
df=df[~pd.isnull(df['cleaned_noun_adj_review'])]
df.shape
#dictionary = corpora.Dictionary(data['cleaned_noun_adj_review'].tolist())
Out[60]:
(2393, 5)
In [61]:
corpus=df['cleaned_noun_adj_review'].tolist()
In [62]:
corpus
Out[62]:
['sound laptop necessary drives.please solution item',
 'amazon wrong pictures keyboard silver colorif review laptop useful',
 'customers items sbi card pleasr statement details prouduct interest bank additional interest month month amazon matter customers sbi cards payment',
 'laptop month use.pros:- overall looks interesting.- screen size display usb ports hdmi rj45 connector usb jack card slot cd rom.- intel i3 7th gen laptop applications browsing experience good.cons:- minute laptop able hang.- full size keyboard numeric buttons right present.overall verdict decent laptop price',
 'message unsatisfactory product i3 7th gen gb ram slower celeron processor other laptop infact simple basic task mail laptop gaming slow % memory % disk usage show time open task manager.i hp messages hp other reviews promising hp customer care laptop sad thing one mail.so sick hp service',
 'laptop day ago.it amazon laptop lifetime validity ms office.but not.we year.feeling disappointed amazon wrong feature',
 'purchase laptop use last days performance wise slow comfortable everyday use.suggestions better laptop same price',
 'bloody product customer support',
 'display quality speed bad',
 'products original hp?find photos same.i i5 i3 different',
 'first boot hrs waste money tension trashpro advice goto showroom lappy dn online marketing crap',
 'brand mine system hours delivery laptop',
 'performance about.i more time installing updates laptop.it slow months hp customer care software recovery.i steps product warranty online classes basic browsing ie gaming other heavy stuff.i service visit software issues service visit arranged.i use guarantee windows version remote place nearby service centre option other item kind support hp.should eye opener planning hp laptop.after month laptop indicator much pom pom ed hp advise crapupdate hp defect hard disk service engineer hard disk usb media hp rs service engineer windows cloud recovery hp free replacement recovery media keypad lappy service centre whole process',
 'pros1 sound quality good2 picture quality satisfactory3 camera average price range4 keypad comfortable5 life time validity windows home mso student.cons1 anti virus macafee trial version days2 opening applications slow better i5.3 battery removable.notevalue money laptop performance',
 'good product.awesome battery backupworth moneysimple drawback antiglare display',
 'folks product review other product responsibility review.this laptop weeks observations pros light weight.single coat appearance nice.keyboard robustsound quality good.cons speed product speed great.touch pad smooth.laptop hot.overall games budget less k. product thought.thanks hope helpful',
 'worse purchase amazon amazon hp low quality product laptop display month physical damage warranty manufacturing defect low quality parts hp customer such hp products',
 'dell laptop hp dell better major advantages laptopms officegreat speakerthe display low quality system slowi older configuration lot better',
 'nice sound quality nice backup value money',
 'laptop slow msi laptop model better actual laptop slow sure original ecommerce side online one one bad new tab sad',
 'value money',
 'system much time mins minimal softwares restart system more hr updates background.sql server only heavy weight software more gb hard disk free i3 7th gen processor same issue',
 'awesome laptop much negative reviews',
 'disappointed performance laptop first day lots issue task minimum double time few seconds m laptop regret wise awesome battery life average only major problem laptop command laptop files laptop amazon product original',
 'worst product hp performance slow applications defective speaker head phone warranty year',
 'value money good quality normal battery life hours nutshell laptop good price range',
 'product packing great laptop gud.pros anti glare display great.keyboard gud .camera great.sound loud clear.laptop lightweight.cons bit upgrade ssd drive gamers ram nd graphics upgraded.good medium gaming.overall great laptop budget 31k',
 'single word- worth slow',
 'product 9th may app slow much time dell lenovo kind product hp',
 'product month complaint slow performance remote support hp desk service center improvement home assistance arrangements hp revert such faulty product',
 'slow laptop bad purchase piece junk',
 'quick delivery amazon.have laptop single issue date.not sure performance gaming gaming.battery life good power saver mode heavy usage.easy much compact well.overall performance good heavy usage heavy usage programming gaming.my opinion reasonable good performance light weight value money',
 'good laptop beautiful colour design windows needs upgrade updation satisfied laptop',
 'overall laptop gooda colour common.(standard)display superb depend quality see.mcafee antivirus day trial.performance excellentstorage- plenty enoughgood programming',
 'expectations quality poor specification hp outlet',
 'review slowwwww worst product hp response customer care amazon.go dell lenovo other brand hp amazon service.laptop krk jao better laptop same price',
 'good product requirement',
 'first place laptop amazon upfront t need same packaging amazon amazon high price products customers images text way t need don t performance expectations.poor amazon policy own risk final sale way it.when load upload first software youtube videos video performance laptop stuck mins video full screen mode while several performance issues laptop don t don t don t don t buy this.when mb file zip memory memory utilization % application dam comments 27-jul-2019 technician visit tech guy issue amazon replacement replacement worst pics review',
 'laptop duplicate processor slow better laptop market',
 "product activation key missingvery slowi'm pissed product god sake",
 'bad system slow',
 'weeks review.it nice useful product daily use battery life good screen quality awsome camera quality little bit okey',
 'product quality good',
 'process slow.ms office antivirus trial period drive partition c drive battery backup time hours only.wifi jio g data usb port usb port type c type usb port letters thin difficult low light(hp keyboard light).hp heat vents display area.when long time bottom area display screen screen laptop heavy nice laptop',
 'kaam heating issue much problem normal daily use',
 'order hp laptop message installation came2- buy replacement day performance3- voice quality picture quality replacement productbut cus same default other product regular customer many year"s',
 'gadget guys short review above model lappy today.design goodweight light hpspecs nice config decent budgetfhd screen new addition good resolution anti - glarebattery interesting aspect lappy good backup satisfiedi3 gb ddr4 combo more initial booting updates lappy slow time setup lappy good lappy affordable price package 26.5k offer credit card offers',
 'product amazon satisfied product range 31k speaker quality poor screen quality mark good side.but thankful bajaj finserv financial need thnx bajaj amazon',
 'modest pricing reflective responsiveness system job entry level laptop basic browsing reading secondary laptop use children.biggest pros screen size extended keyboard dedicated number pad.biggest cons slowness laptop absence backlit keyboard latter purchase',
 'one non laptop application down.microsoft office slow starts mins amazon it.i wish amazon.this worst experience amazon laptop money',
 'slow laptop slower year i3 laptop same price',
 'worst product pathetic laptop hangs day times waste money seller willing return period kind sellers reputation market',
 'junk product single star other choice bad mins app own time i3 gb ram worst product 19th century computer good junk product sure hp product quality correct spareparts hp model scrap items hp employee kind worst experience hp product hp kind product hp share value product',
 'disappointed product hp job hp local product product',
 'bad product one waste money slow performance gb mobile phone battery hour money item seller customer care return policy product',
 'decent product price range lighter windows value money buttons amazon technician verifying new laptop',
 'slow years old laptop better',
 'product today ms office ms office product key ms office key package document ms office.after months mouse windows obtion unable bluetooth mouse ok other issue system superb',
 'product student best entry level laptop important functions student buy itit pre ms officewindows money',
 'specifications laptop lifetime warranty ms office warranty week query',
 'good laptop home use ms office pre loaded smooth bit slower expectation core i3 7th gen good value pricepoint',
 'bad experience worst laptop problem first day personal use laptop games simple task thing i3 processor becz i3 seller fraud laptop i3 sticker tha laptop garbage fill.worst performance worst laptop go dell laptop good',
 'ekdam ghatiya h act old laptop performance slow',
 'laptop slow lot time battery backup bad warranty card laptop poor display msoffice valid month',
 'system windows office suite booting speed slow system better performance wich',
 'screen border black rest parts silver u dark area coz light keybords keys',
 'range good laptop single drive partition c drive lappy.secondly issue black screen error time thanks budget',
 'laptop hp months laptop:1 minutes disk usage % % data c drive.3 google chrome edge browsers hp customer i3 good windows better i5 os windows',
 'best quality',
 'windows least gb laptop slow regret',
 'slow machine ms word laptop slow.on boot disk utilization % processor utilization % mark performance consistent specifications',
 'provision star available laptop slow g network time link',
 'laptop good reasonable price config battery little description lagging issues startup few changes fine keyboard soft easy num pad handy numbers better keys different colour.overall good',
 'laptop day laptop complaint period many attempts unable amazon customer service',
 'battery good bt sound quality average average processor disappointed product',
 'bad experience amazon packing laptop bad packing surprise laptop name jitu pawar password profile above amzon',
 'best product price range.1 weight decent2 gaming performance high.3 product battery life times full charge hours backup.4 last days hanging issues also.overall laptop games best product price',
 'inspite gb ram system point laptop minutes basic application ms excel ms word browser chrome time lag sad 30k trash',
 'excellent',
 'slow',
 'sir madamas requirements ms office bag factory immediate call laptop screen quality good',
 'good',
 'dear sir madam hp laptop touch pad same asap',
 'worst laptop world issues:1 dead slow2 hang3 battery backup mark.4 trouble admin access waste pure money product worth half different',
 'battery life good problem silver white body colour scratches dirty black colour body laptop',
 'worst product amazon worst laptop life product mother months beginning product point time unable atleast product product site warranty hp service team reluctant onsite service product.hp -',
 'laptop primitive configuration laptop market good things time sleep bad things slow more tabs browser google chrome likely chance laptop freezing more worse network adapter ghz band gb ram inadequate',
 'cheap showrooms brand new lappy good packaging pre ms office i3 7th generation processor lags normal tasks lot time booting gaming',
 'worst ever product hp trust hp i.m hp products many years hp dealers atleast laptop warranty period',
 'product good bad hang regular basis',
 'laptop poor finishing gaps right side keyboard panel cd disc scratches',
 'worst performance price range slow sound',
 'bad experience product months spot screen service center screen damage warranty suggestion laptop other expensive products amazon',
 'speed machine slowest good basic school work hp such bad product reason low price price %',
 'useless productvery slow processingit better product showroom amazon',
 'disappointed performance quilty slow system slow other systems defective',
 'laptop slow dell friend',
 'laptop great i3 usage everyday surfing movies ms officenot gamingcame life time valid os ms office',
 'confusionlaptop power oni opt return hp answerat last amazon for3hrsthen people other wise bad impressionsat least hints',
 'hole laptop colour good keypad silver colour good light gm ram good hang problem extra gb ram performance good gm ram laptop gb ram laptop buy bilvery product bad amazon divery agent call time rply amount choice frnd',
 'warranty laptop laptop hp service center laptop serial invoice',
 'processor slow keypad key laptop',
 'nice',
 'patheticamazon support case details hpmy laptop useless less thosepathetic',
 'slow more minutes minutes windows',
 'processing speed slow basic apps office web browsers benefits genuine windows',
 'device faulty month device',
 'defective product sellers',
 'time worst laptop dell i3 nd gen gb ram gb harddisk old laptop better laptop',
 'worst laptop such useless device life slower nursery faster device',
 'worse products dnt feature product possible',
 'budget 32k good general purpose excellent product many slow first time lot time great no updates updates performance great',
 'worst laptop ever.service amazon good product good offline product amazon bcz smallr hp genuine laptop.heating issue right side touchpad slow other i3 products',
 'month laptop happy performance way',
 'pros good wise.display nice other laptops price range.cons hangs multi tab reliable gaming office software word gb ram model',
 'one laptop unexpected aware laptop',
 'super ms office',
 'product good warranty card big fault amazon side acceptable amazon fraud customer many times customer services number',
 'product good warenty card windows plz information product dear amazon issue belivable customers',
 'good looking laptop full hd screen good sound quality',
 'worthless amazon',
 'nyc superb budjet dizz product more data',
 'genuine happy product gb ram ok gb robust experience overall good laptop',
 'lappi slow much time chrome other app products amazon none happy products amazon future',
 'good laptop day tasks average laptop price 30490.there information available type ssd',
 'price worth battery',
 'slow stuffing many times',
 'amazing product extra gb ram best use additional ram laptop slow extra gb nehru place kingston',
 'laptop ms office ms office life time windows',
 'hp product good support services poor hp product dell items better hp items',
 'response time slow battery',
 'product quality issues fragile waste money service poor product',
 'minutes dis',
 'worth penny',
 'laptop laptop slow hp support good solution problem',
 'battery sound build quality good i3 processor slow laptop simple usesage i5',
 'system slow',
 'good;battery backup fast charging nice sleek looking games application',
 'worst product multiple windows lot slow fancy peice attractive worth',
 'value money',
 'good product',
 'slow',
 'new laptop longer time app performance',
 'laptop durability battery life good bit slower side mins login windows',
 'half months battery today % battery ac adaptor swith answer problem',
 'material body making bad glass breaking type solid material.very bad material',
 'good otw unsatisfactory product speed slow',
 'slow laptop',
 'last month small defect right side panel screen laptop slow day much use',
 "slowest laptop world dnt value money don't",
 'good complain extra rs 28th prime customer 29th rs less due prime customer',
 'useless',
 'system slow ram low people products laptop amazon product stores',
 'problem operation',
 'veryyy',
 'good bit due internet speed issues ms office version free amazon batter inbuilt sound quality good',
 'keypad bad',
 'dumbest decision ve slowest laptop clean format doesn t work t money',
 'worst lapi slow',
 'slow lot time kid middle range laptop useless user experience frustrating waste money',
 'pros light weight slim design good battery life charging extra features cons hell lots time start booting system slow',
 'product last month one screen bill product',
 'slow ram upgrade',
 'slow better regular use performance less gb ram',
 'great product quality hp',
 'item happy performance quality',
 'graphics suitable slow start.after black screen problem.also down.warranty hp website',
 'laptop disappointing battery backup good display quality good ssd ram smooth work',
 'product issue keypad complain one issue bad product service hp',
 'worst product third grade quality china online worth money',
 'good school office',
 'review battery life hours picture quality average processing speed average',
 'product worst product hp company laptop hp company amazon',
 'p1 system most time hang hang hand window everytime',
 'waste money full problem much time vedio',
 'nice laptop smooth keyboard good gaming windows touch screen laptop performance excellent',
 'worth product slow work',
 'verry slow screen quality bery wrist product old verry disappointed hp quality',
 'good ms office',
 'performance laptop poor more time apps files hang useful',
 'worst product',
 'hp laptop friend nice product hp usual genuine service amazon amazon',
 'anti glare yesfor goodportability- pints budget best option',
 'mins',
 'battery backup good speed little slow nice',
 '',
 'worst money laptop keyboard good typing visible words keys due silver colour keys board',
 'worst laptop market.very slow such basic things',
 'bug windows laptop hibernate battery',
 'slover speed costly electronic item laptop',
 'ms office worst experience ur regular customer',
 'slow processing',
 'slow laptop bcoz i3 proc pc pentium core faster due settings other fact',
 'goodproduct',
 'product bad',
 'battery removeable removable system good slow good',
 'good condition system times little slow other wise goodone product demerit drivers software cd box charger laptop box',
 'bad product hp slow process bad customer service',
 'windows works slow gb configuration better gb wise ok fr 30k range laptop gb os',
 'satisfied performance laptop battery backup cost this.also % cashback month warranty laptop vqr helpful button.happy purchasing',
 'months usage review battery price',
 'good product dealer hp service centerdear mr ms kumar status request closeddo email unmonitored automatic service contact information.please note materials notification materials reference number description hp g5 notebook pcproduct number y0t72paserial number description portal case url n',
 'wonderful product price effective price delighted it.pros good battery life lightweight.- price durable excellent daily use.cons suitable high end gaming.- dos windows',
 'damage laptop disappointment',
 'personal use surprised lightweight battery backup good hours full charge tasks smooth lags lots windows amd quad core processor jalwa windows awesome price point supercool product next day prime subscriber others jackpot.note hp warranty past many people issue hp products amazon hp guys warranty product amazon',
 'laptop lines display laptop work days lot problems product return return warranty laptop hp company',
 'lightweight hp less worth deal.the only gripe offer period price offer period lower one fair amazon warranty month sep easy softwares',
 'fine bluetooth drivers hp downloads seller drivers realtek hp broadcom intel',
 'right hand side vertical line screen',
 'amazon product years october product october vga usb hdmi ports rusted.moreover policies technician product complaint product photos hp website warranty june update basis response amazon',
 'demaretsthis product window driversit humble request amazon atleast provide network driverand product laptop actual details product differenti product voucher boxusb port side driver thatmeritsbettery life fair last hoursfunctioning smoothoverall good window',
 'daily work fine super m.s office abd other games non mini laptop 18k price range laptop hp brand performance equal i3 amd a6 proffeser good amd a6 equal i3 order',
 'use year developer good basic programming framework.build quality use linux os(ubuntu linix mint os work better smoother windows',
 'bitter experience amazon cd dvd writer noise hard disk',
 'solution',
 'happy product.but sound device first purchase amazon product best price',
 'good laptop atleast issues great budget laptop',
 'laptop amd processor low budget home use laptop os win 64bit os necessary drivers hp web site.it moderate laptop net surfing other office work display moderate low end hamming laptop',
 'good budget laptop dad hardware spec right daily basic usage office apps movies screen good quality angle better most lappys budget.thing os bluetooth bluetooth usb adapter',
 'quality good battery exhaust amd processor bit slow cab happy',
 'months battery non functional laptop electricity warranty hp claim worst experience ever.this due design battery protrusion battery even surface)laptop overall functioning good',
 'good buy small business week touchpad smooth difficult few lags other intel processor',
 '19k alienware average mousepad ordinary battery display great trips better original window',
 'laptop',
 'price pocket hp reliability assurance',
 'laptop day receiving.laptop battery adapter double box.only dos .drivers other apps downloaded.nice laptop bag supplied.overall good',
 'multiple applications',
 'product good warranty seller back seat warranty months many times seller response',
 'good product m months product awesome speed',
 'screen lines amazon several time hp support cheated inspite senior leadership team several assurances days',
 'good extra installing windows antivirus',
 'laptop value money',
 'nice productandnice pricethanks amazon',
 'laptop good price information correct',
 'fast work.awesome battery backupand interesting thing fast charging',
 'price range more price range',
 "laptop years i'm jus basic purpose studies movies today good product cheaper price",
 'screen quality perfect screen bar line lines displays',
 'lightweight easy appropriate ram screen storage space suitable students professionals lightweight performance laptop',
 'chapati stone laptop goodness front courier person much online product more rs delivery satisfied',
 'amazing products last few months day(long hours) wonderful product budget',
 'prompt delivery original product thanks',
 'iam happy product requirement',
 'amazon laptop hap touch fake fake fake amazon fake',
 'usb sockets good shapeless',
 'nice one price.look awesome display weak big issue',
 'good laptop basic daily needs worth',
 'good battery',
 'good product affordable price',
 'best laptop price range',
 'gud',
 'basic version ms op bettter other versions effective',
 'lot poor screen quality graphics low money waste product',
 'horrible product one less days use more 15min',
 'able angular setup',
 'good laptop 18k',
 'bit bulky range hp',
 'dvd writer laptop last week',
 'amazon satisfied product genuine product lower price amazon',
 'best laptop price range',
 'good product satisfactory performance sound low',
 'lap top ok advanced version product product ramanagar',
 'help os',
 'good battery life poor performance average body quality god',
 'wrong product product optical disk drive pic optical drive',
 'value money nice laptop',
 'satisfied product amazing',
 'nice n l lot agood choice woman easy',
 'nice laptop price home non professional usage.arrived time overall good product',
 'laptop nice',
 'good product less price',
 'great',
 'fantastic lap battery life good good working condition',
 'wit complaints worth money',
 'good',
 'brilliant purpose',
 'awesome product 20k price tag kinds os.download necessary drivers hp official website.battery backup quality',
 'bad product',
 'defected product wrong warrenty period',
 'specification product nice complaints',
 'third quality laptop windows bhi alag se upgrade karana padta hai',
 'good nice product',
 'battery fuxntion battery',
 'worth 19k thanks amazon',
 'value money',
 'price good',
 'satisfied product.good',
 '',
 'laptop service good',
 'very.goood',
 'product better battery performance good',
 'awesome',
 'good product price',
 'best',
 'good usb port',
 'good product hp',
 '',
 'good product',
 'good product range',
 'worth cost purpose good product',
 'package damage',
 'wonderful product',
 'quality',
 'good product',
 'nice',
 'satisfied product',
 'sasta sundar',
 'bad',
 'defective product',
 'normal work',
 'bad',
 'bad product',
 '',
 'bad laptop',
 'good buy basic function',
 '',
 'worth price',
 'good laptop',
 'nice',
 'battery bacup gud',
 'good screen quality',
 'best laptop',
 '',
 'laptop sahi nhi h',
 'value money unique category',
 'good product',
 'nice laptop light weight virtualization best budget',
 'poor product',
 'good product',
 'nice',
 'good configuration speed good',
 'good',
 'bad',
 'great product value money',
 'bakwas',
 'bill laptop warranty card',
 'nice',
 'cool battry drainage issue',
 'good product price segment',
 'product worth money better choice middle class performance good',
 'excellent product',
 'window',
 'better',
 'good laptop',
 'thenks',
 'great product',
 'value money awesome',
 'nice processor fast worth buying',
 '',
 'good compact',
 'excellent product',
 'good product',
 'good products',
 'excellent',
 'excellent product worth money',
 'great laptop price',
 'windows person new os.- a6 better gen i3 processors- quality good price range.- back light keywords aware same.- optical drive vga port hdmi usb card reader bluetooth mm headphone jack awesome mobile headphone mic',
 'good product 19k issues processor hardware months good students problem driver software usb ports unavailable hp software site lenovo drivers other issues',
 'connection several times drivers installation efforts drain hp issue service man',
 'week experiencegood product price.using ubuntu decent amount ram regular progs heavy files memory good graphics runs steam hitman game a6 apu.3 decent build4 good battery backup hrs backup videos wired internet.5 problem summercons:1 hour more battery backup great2 inch screen little verdict decent laptop price',
 'quality last months crack keyboard battery locks properly(one et al',
 'months mother board warranty next day fan case waiting.edit fan warranty rating os crashes blue screen day sure hardware software issue',
 'awesome product price range last couple days lagging issue heating issue budget range 20k',
 'amazon last month time issue machine anti glared screen great applications windows bettary hours continues use light weight slim budget requirements',
 'laptop days prime thanks seller.product cheap good performance touchpad responsive windows overall better performance hdd ssd upgrade ram gb gb gb',
 'laptop axis bank credit card months first credit card bill product emi complete amount statement bank seller amount emi complete amount credit card bill fuss',
 'good product good value money months keyboard light dark problem other good basic uses programs good enought android development amd cpu arm system image slow',
 'product defect left side usb device connector connection pendrive charger wise device time return more nice fire enthusism',
 "ton laptop price solid extra gb ram laptop interested ram dimm slots gb other free extra dimm sure low voltage sure regular ddr3 voltage motherboard compatible stock dimm hynix ddr3l gb hynix hyundai electronic division win x64 bit seconds max extra ram computer zip processes heat issues glitches month use weight solid finish pseudo metal type artwork touchpad areas cheap plastic amd a6 best processors great long life care older a6 dual core years laptops vents dust cool place amd a6 money intel i3 i5 generation processor complete waste money intel lawsuits past faulty soldering processors google only things keyboard laptops moulding keyboard keyboard protector removable keyboard screen ok great anti - glare matte finish default ips hd screen price point more presentations students moderate office work stuff gaming high fps drivers pc bit pain hp support assistant pc drivers warranty similar hp laptop similar chipset drivers support page hp g 221au drivers pc audiophile laptop sound quality speakers bottom wrists dts sound application realtek sound driver best sound cards long time don't solid bass unrealistic sound clarity volume loudness good other laptops good set ear headphones dts settings default generic windows equalizer amazed sound clarity bass dts webcam good great basic skype photo snaps computers vt virtualization technology interested virtual machines other simulation software able dvd drive slim dvd writer small profile quiet readingit rj port vga port hdmi port 1x usb port usb ports touchpad responsive synaptics elan touchpad bit downer synaptics best touchpads job issues trackspeed movement bluetooth good realtek chipset connects first shot issues realtek chip good signal floors concrete house rebar several walls sure good wifi driver card default windows driver bar realtek driver bars signal strength settings device manager control panel laptop budget keyboard protector saco brand it) laptop years old terms chipset mid terms amd a6 price point terms ports worth it!if review helpful like helpful button thanks",
 'great laptop prize stars windows',
 'days delivery laptop best noticeable lag price range best battery life superb most softwares heavy coding softwares normal company use good',
 'bad.never bad display.far average display.regret buy',
 'amd a6 better i5 processor doubttested games nfs mw elite effect',
 'problem win bit installation little bit lowered catylist driver installation.battery web browsing hse comp.sc/app tools functions ms office gimp geany gcc compilar libre office sql php ubuntu lts dual boot system grub update terminal dual boot screen ubuntu brightness problem win amd display driver configuration',
 'good oneif gamer best choice price range thing moderate use body seller good',
 'absolute value money budget model high speed hard disk business laptop hp website price',
 'satisfied price',
 'good productshould accessories bagand cabel way good product',
 'display laptop good driver picture quality display grainier jazzy',
 'excellent product decent price bracket performance excellent higher ram good battery backup hours*/depends individual usage',
 'ports speed mark',
 'nice laptop home use',
 'days laptop complaints stuffs better aspect laptop one onebuildi laptop vacation outdoor most part firm light weight whole plastic enough place need keypad light work dark top good texture hp logo usb port none lights webcam right side laptop hdd notification lan port right side usual cd reader writer keypads tactile clicky front side card reader left hdmi back u battery down sideperformancei laptop daily presentation stuffs amd a6 g4 radeon lags massive slow downs heavy software adobe games gta amd compatibility issues emulators antivirus defender good adobe photoshop games company heroes littlestandbybattery hours usage average opinion battery.it locks back bottom laptop pipe battery out.screenscreen bright anti glare good sunlight difficultycamerait mega pixel camera microphone decent one good photo enough lighting low light prone distortion sufficient video chatsspeakerspeaker bottom front laptop audible noise disturbance audible laptop good compactness.if average user productive works excel sheets presentation fine choice only plastiky finish performance money ok',
 'screen awesome anti glare battery life decent keyboard good slight heating bottom summers sound good price point excellent',
 'plastic brittle grandmother windows',
 'perfect school office use cheap beneficiao go.very smooth easy',
 'day lag stuck product ordering amazon time',
 'good product expectations',
 'unworthy product this.dont one',
 'good laptop price nice performance bad',
 'process slow sound system bad',
 'awesome product',
 'problem',
 'laptop years heavy battery life many times',
 'laptop good performance review usage invoice',
 'simple superb quality',
 'good smart',
 'keyboard',
 'battery backup good',
 'name quality hp tb hdd gb ram latest 9th generation a9 processor hrs battery fast speed ghz 9th gen . processor today equal ghz competition good multi - tasking same time mistake thinking similar capabilities gaming laptops 21k best cheapest laptop',
 'product time prime member setup system ms office performance money',
 'nice laptop',
 'fourth hp product smooth battery half hours few video streaming full recharge half hours sound graphics excellent',
 'laptop hp 14q cs0018-tu 19k inr july prime day fast nvme ssd read speeds gb s windows boots less seconds cheapest laptop fast nvme ssd toshiba kbg30zmv256 g kaby lake r pentium gold processor cores threads equivalent core i3 laptop thin light keyboard decent brick small portable sufficient cable length.the major downside screen sub - full hd panel ok price point other downside speakers nit picking.overall happy laptop great web browsing productivity office work light programming best laptop inr segment expensive laptops rpm hdd',
 'rs price.the body plastic shiny plastic hp easily.1 display fine good bad.2 keyboard fine backlit keyboard price.3 mouse pad bit slow sensitivity.4 gesture support there.5 battery life good laptop netflix offline hours full brightness earphones battery good backup6 gaming basic games gta vice city expected.7 ssd huge difference pc boots seconds storage gb worth laptop other hp i5 8th gen processor8 usb usb ethernet hdmi headphone jack sd card reader ports.9 speakers good loud tiny.10 small fan heating issues.11 webcam ok qualityoverall good buy 20k product',
 '19k prime day deal good laptop school students gb ssd reasonable processor power efficient ram gb resolution price.overall premium laptop.windows great laptop latest build updatable windows update.first thing setuo uninstall mccafe software need windows defender antivirus software.also other crapware dropbox hp apps',
 'laptop smooth sharp windows office thin light booting slow review couple days',
 'great hopes laptop laptop crucial business days receiving god long.i negative ratings garbage.bottomline cheap laptops',
 'pros:- good entry level laptop compact light laptop easy keypad great subscription mcafee office school edition- sound quality picture quality top class good home usage light office work- good options touchpadcons:- touch screen- extendable memory slot gb ram',
 'high end laptops ssd technology 1080p videos youtube lag anywhere.sound quality good headphones speakers ok normal use.boot time best less seconds.battery hours moderate use.no cd drive home student heating operation ssd think.webcam good normal chats hd one good.display hd good movies.never games.weight other laptops range.one downside office version trial 8k lifetime mcafee other junk softwares first boot windows defender good pc.price amazon eoffersindia price drop alert',
 "good specifications fast performance gb ssd pcie nvme ssd nvme ssd advanced normal ssd difference hdd ssd's.but description dvd drive that.pros:1.thin2.handy weight hd.4.sound good.5.fast prompt nvme ssdcons:1.no keyboard light.2.no dvd writer.3.microsoft product activation few high volumes speakers sound.5 vga slot few people much issue).6 usb c port.7 usb 3.1let ahead.overall professionals decent performance gb ssd pcie nvme ssd",
 'back college laptop friends tb ssd whole set off.played whole assassin creed black flag little lag engineering softwares lag(except sucky wifi college)overall best laptop 20k hdd production power house budget',
 'oer date product good condition hp good brand recepient best use same',
 'great laptop price at19.5k battery life decent hours finish decent great ssd boot time seconds.negatives- keyboard okay hd resolution price cons acceptable',
 'first gb ram gb ssd model.got independence day sales % instant discount sbi card people performance gb ssd performance boot tb hdd model perfect home use student use gamers photoshop.my advice above usage categories best config available price point ssd gb ram tb hdd extra ram portable hdd',
 'product good first day beautiful beautiful yeh toh tatti hai',
 'month review laptop rocket gaming laptop best normal official work web browsing simple editing',
 'screen good display awesome laptop sleek lightweight battery backup pathetic best hours maximum day trial mcafee anti - virus free careful other anti virus software - mcafee anti virus other ant virus software system similar problem factory settings good laptop better battery backup',
 'good product basic usage lightweight performance sturdy battery good genuine windows bonus price point',
 'ssd laptops.very high performance speed win10 loads second kaspersky internet security i3 i5 delay processing speed par i3 processor sdd weight light',
 'good performance sound super comfortable slim light',
 'laptop hardware problem cpu usage day % cpu usage skype windows laptop minimum laptop clicks next day laptop auto repairing auto fixing laptop today horrible experience',
 'amazing product stylist look photography hobby needs picture adobe photoshop pics photoshop systems slow i5 gb better performance',
 'good specification world brand hp licenced windows suitable colleges students cost effective problem ms office trial version days',
 'excellent purchase reliable brand smooth os 21k good deal',
 'battery life last hours max normal uses screen quality little bit lighter weight fine mention laptop charger simple bag worst simplicity cartoon happy offer rs.19.999 range stuff good higher stuff',
 'readers laptop days limited usage review helpful decision light weight good mac ssd windows boots less sec keyboard quality good sound quality good stereo effect.4 premium product build quality good.5 new generation lappy inbuilt battery user serviciable part pentium gold processor good core i3 gb ram gb ssd licence copy bang bucks decent laptop basic work ms office internet surfing youtube config normal office use autocad minitab nfs run all.if clear use exceptions laptop chota packet bada dhamaka great indian sale prise brand hp ssd traditional sata hdd huge diffanance working premium lightweight mac like gigs movies laptop external usb drive purpose daily usage ssd huge diffarance hdd usb ports faster file transfer compatable devices.please note dosent dvd rw drive battery non - removable laptop bag provided.i happy purchase thanks day',
 'boots max seconds due nice windows gb rest fine good students programming daily stuff pdf charm.bought good value money satisfied',
 'sec laptop ready for.2 external hardware lower quality plastic.3 screen color ok more price.4 light weight.5 battery backup ms office genuine office range.7 battery removable smartphone today replacement battery hp service center',
 'good works windows good macbook pro par terms speed resolution okay high resolution screen personal use high processing application',
 'light book copydisplay minimum colour quality light speaker sound',
 'price point 20k smoothest operating laptop range ssd disk wonders battery backup good house requirements works perfect overall build good mat finish screen resolution ok sound quality good good value money',
 'positive reviews product product useless sure product',
 'laptop rs exchange festival smart thing hp laptop standard tb hdd available price points gb hdd most home purposes light office work streaming better choice ssd better battery life laptop lightweight homely work pre - loaded windows steal price',
 'black line screen days product',
 'laptop good delivery fast invoice product',
 'laptop amazon sale old dell i3 laptop best deal boot due ssd usage minimal such web browsing movies ms office perfect buy external hard drive additional need space old dell vostro laptop great value money',
 'today product average look natural silver colour price ssd one 15k performance wise product great battery life good screen resolution average overall value money other product brand offer same configuration amazing price point',
 'laptop 18k bank offer great indian festival sale laptop next day packaging great review days.performance only laptop ssd price point huge difference responsiveness system boot speed windows boots seconds apps such microsoft word chrome pentium dual core hyperthreading logical cores decent performer web browsing word processing video playback best part gb ram box gb ram slot empty slot inch drive ssd hdd gb word advice laptop ton bloatware sure needless games software.build quality expensive laptop chassis plastic good quality little flex keyboard deck screen keyboard keys tactile good travel trackpad accurate tracking reliable gesture control.media consumption screen bright colours punchy inch display good size resolution price laptop sweat videos youtube external display peace mind hardware speakers loud clear high volume bass little lacking though.battery life light medium usage such youtube video playback web browsing word processing hours battery single charge laptop fast charging hours.final thoughts laptop replacement old desktop computer dad happy purchase need secondary pc computer old desktop parents laptop consideration sure laptop sale particular configuration available 25k bank offer deal',
 'satisfied laptop booting speed application speed daily use application browser battery life outstanding comfortable daily use typing browsing books notes 13k amazon sale more happy.bonus point appario seller genuine product',
 'i5 earlier i5 hp laptop good heavy computing tasks comparison old laptop simple excel aggregation functions one test happy operations hours cpu % freezing due exhaust ducts such way flap reason.otherwise',
 'awesome price range 18k nvme ssd boots sec low pentium processor regular i3 i5 hdd pentium nvme ssd i3 i5 processing power',
 'value money laptop new pentium gold processor ssd',
 'laptop light.the processor fast ssd.i ubuntu wifi drivers available ubuntu.only downside display price.build quality sub optimal.overall fantastic deal',
 'amazing prime day sale 18k first time user normal office work days superb aspects amazon',
 'laptop basic grade basic processor build quality basic worth money amazon pricing high worth price other ecommerce websites same model amd processor prices',
 'price rs price range best laptop internet excellent choice laptop windows os more best',
 'good product hp.latest cpu os ssd ddr4 device note book secondary work device heavy user primary device students normal business persons',
 'good poor speed keys hard pre ms office extra overall old dell better one better performance reviews',
 'wise goodfor inch tabletbattery hr moderate usesome plastic niggles present need worrylaptop charger heavier laptopbootup time sec win extra gb micro sd',
 'laptop slow months laptop slow slow day',
 'laptop office amazon service',
 'nice laptop compact excellent performance high battery backup giving feeding month',
 'excellent product product rs 19,900/- thanks great indian festival sale only drawback lack cd deficiency external cd drive',
 'handy light weight lap adorable good presentations people move overall good experience',
 'doubt light weight laptop long battery life gb ssd system speed',
 'expectations terms speed form factor display quality it.i small issue power button small one sure power led indication light side one sideways',
 'satisfied excellent product speed good wise elegant light weight convinient last week.overall excellent product',
 'good deal.super boost productivity.instant app launches boot nvme down.massive bummer gaming mind.but best decisions',
 'piece students nice decent config low price',
 'laptop good days use hp motherboard.i warranty period',
 'fast booting crisp processing gb ssd device value money price responsive i3 tb specification device fine light good',
 'hdd slow ssd good experience',
 'days happy decision worth daily domestic usage value money',
 'k offer',
 'system slow drives reboot time large rest best',
 'decent product generic purposes ssd quick responses evident games other heavy graphics works',
 'fast booting time setting process',
 'fast entry segment laptop hp ssd difference boot time processor latest on.good light work office work windows bliss',
 'good battery life best price much difference price range k laptops',
 'display quality life quality good 4.5/5fast booting time good option',
 'nice product thing good display quality.performance amazing sound amazing graphics good battery backup good ultra portable windows',
 'business purpose amazing',
 'laptop amazon sale startup ssd light weight value money good browsing personal use product price',
 'good',
 'plzz genuine buyer laptop bcoz reasons speed sec n sec more',
 'g8 price good performance i3 laptop',
 'positive more backlit keyboard',
 'amazing laptop sexy n performance ssd performance supersonic',
 'lappy good little bit overpriced day day normal work',
 'fast happy purchase',
 'lot problem software slow downs files currupt requests matter resolve issue weeks',
 'amazing laptop',
 'product drives product',
 'horizontal line lap top screen screen defective contact supplier arrange replacement lap top',
 'great ssd superfast display issue great simple home work use.lighter',
 'value money good product price',
 'microsoft good',
 'useless laptop display poor letters article websites advice one',
 'good laptop gaming',
 'lovely laptop good specifications price basic computing needs discount less',
 'hp laptop good',
 'average day low strength adapter',
 'product 20k thanks amazon handy compact gb ssd fast good battery life great buy normal user',
 'hp laptop 14q cs0018tu gb ddr4 ram gb ssd drive open windows home chocklate kyeboard good experience',
 'good product scratches surface',
 'fantastic product range type excellent work laptop',
 'well.the screen',
 'display good boot time awsome wrong specification usb port ports usb',
 'price good.ssd amazing',
 'good performance.using week fast delivery fresh product',
 'superb note book good looks light weight satisfactory performance best thing 20k',
 'space',
 'smooth day day task',
 'good laptop college students.ssd superfast',
 'thin laptop professional use smooth fine',
 'good laptop decent performance compatible issues laptop days usage good go students',
 'reasonable product suitable home users',
 'less storage',
 'best laptop range good featuresso laptop range',
 'good daily use light weight average processing speed okay',
 'worst product multiple technical flaws',
 'amazing laptop hpits powerful gb ssdboot',
 'display average laptop case average quality',
 'good',
 'laptop same amazon website photo',
 'screen good good product price range',
 'value money due solid state hard drive i3',
 'lightweight excellent screen quality good computing power personal laptop',
 'waste laptop foreverperformance poweroff',
 'awesome ditto',
 'booting fast.i happy laptop good buy home use',
 'best small budget',
 'beast browsing light office work ssd charm boot time sec',
 'screen quality good amazing battery life weight right',
 'ms office download google chrome normal version',
 'average',
 'problematic weeks use screen vertical line',
 'light weight value money',
 'good laptop home school college small business use',
 'good customers name ms office',
 'great lightweight laptop college/ university',
 'hand hard drive',
 'good price',
 'nice',
 'ok normal browisne good',
 'average laptop average price average use',
 'screen quality',
 'worth buying',
 'great',
 'initial rating detail',
 'good performance',
 'laptop great',
 'useful laptop students',
 'light weight nice screen good',
 'better',
 'best laptop price range',
 'product basic use',
 'mind purchase',
 'nyc',
 'excellent product value money',
 'thought great deal',
 'product ok amazon people worst',
 'good product range',
 '',
 'most daily tasks',
 'size issue',
 'nice laptop',
 'best configurations personal use',
 'good quality',
 'good product',
 'ok product',
 'doubts amazing products',
 'waste',
 'worth money',
 'amazing product rs',
 'best segment',
 'best budget laptop',
 'value money good speed',
 'smooth',
 '',
 'value money',
 'great product',
 'good quality products',
 'good',
 'slow start',
 'good laptop',
 'good',
 'report',
 'product price ssd price good',
 'product expectations price point',
 'good product slim sexy laptop easy response good 40s boot bad gaming',
 'laptop lot purchase price margin positive reviews advantage positive reviews demand amazon price margin worthy product product best average margin other product',
 'ms office product key activation model pre - loadedoffice pl product key pop message',
 'great hopes laptop laptop crucial business days receiving god long.i negative ratings garbage.bottomline cheap laptops for!i replace tb amazon item today kch nhi hager muhje tb mita h m uske islye aur paise dene k lye ready huamazon hp ki market m value khrb kr rha h.so ilsye dear sir kch krna pdega nhi ak time esa aayega jab hp koi nhi lena kyuki m phle bhi hp tha mere perilsye mne hp ko liyabut amazon esa nhi chahata ilsye sochna pdega',
 'laptop % sbi debit card discount varient gb ram,256 gb ssd boot time boots sec problems stuffs.every thing good screen sunlight price good choice perfect',
 'nice product worth purchase cost better ms office permanent version part os.battery life ok screen resolution nice light weight working gamming experience normal office study purpose satisfied product',
 'laptop may saturday product early morning may monday kudos amazon delivery worried damages scratches laptop laptop review weeks review pros cons features laptop laptop light feather easy body slim metallic look premium feel.2 boot time fast seconds homescreen password screen up.3 gb ssd drive reason laptop.4 touch brilliant responsive pen quick response designer pen benefit other utility paint multifunctioning smooth laptop application feature good tablet easily.7 windows interface easy android games apps apps store.8 usb type c usb hdmi sd card reader sides connectivity easy.9 battery life good usage laptop % battery show hours need charger.10 keyboard spacing short while main work content writing change typing speed.cons:1 screen- screen fhd 1080p videos full hd experience.2 ips plane switching feature screen quality shifts slightest change screen angle video content slightest shift angel change contrast black levels comfortable experience volume fine loud audios videos large room full people good speaker entertainment.4 laptop lot uncomfortable level laptop lap summers laptop front air conditioner little.5 laptop sturdy feature multiple times saying)overall more pros cons laptop biggest minus point screen gb ssd heed screen resolution good buy entertainment work major concerns.this good laptop 2-in-1 laptop budget 45k fhd display model same specs one 101tu model few days',
 'sister freelancer look few hours comfortable writing overall accessibility texture look laptop premium touch screen quick tablet quick keyboards disabled don;t keyboards tablet.it fhd visuals good speed enjoyed.i laptop students freelancers artists writers good traveling.it lightweight cost high pen cool more months further.overall price brand specifications value money more specifications i5 version gb ram version model cool',
 'preliminary review laptop day beautiful slim good tablet technology amazing pen good better screen guard touch pen screen first i3 i5 i7 speed fine bunch software ssd hard disk boost gb ram stick i3 performance good edit keyboard hardware ram bigger ssd difficult model x360 hp laptops compact mobile phones battery other older hp laptops inconvenience people computer savvy laptops',
 'great deal charm skeptical good buy budget 40k-50k corei3 8th gen ms office windows degree tablet screen pen slowness review days use month',
 'first thing -performance machine same i3 ssd -no complaints good looking laptop biggest letdown display laptop full hd display.this hd display images let display visible over.more glass display pathetic difficult time.i more it.update:- considerable time.my biggest complaint display annoying fhd laptop few bucks hp fhd price point.(i screen gd stylus case other customers samsung galaxy note owners stylus actual use minimal hp pen advantage',
 'satisfied laptop fine touch screen stylus pen excellent keyboard sleek video quality mark notes browsing fast prime day',
 'laptop fair deal usual amazon awesome cons.cons:1 speaker tablet mode better placement speakers nice.2 ram warranty.3 pen aaaa batteries expensive packs time battery second i3 laptop fan whole time.5 type c port bummer power bank unlikely.6 angles pros:1 touch screen awesome.2 best use case ms office work.3 latency pen par apple pencil.4 track pad windows precision drivers.5 speakers good laptop mode.6 ms office inlclude.overall worth',
 'issue activation office pleased feedback review able ms office ms installed usable rating star stars unit lightweight good value money gb ram bit insufficient purpose system documentation spreadsheets presentations pen earlier initial review above!!!by product details impression ms office part purchase representation misleading office product details this.note delivery last evening review case activation key seller same',
 'charm first day amazing lappy affordable price guys good mood mine',
 'best options student silent fast flash drive operation great buy external hp monitor usb keyboard mouse excellent desktop home portable laptop home legal windows-10 ms office home student version more value proposition',
 'laptop available microsoft outlook unlicenced unable outlook everytime oultook mail process',
 'good deal exchange old laptop.it nice quality old laptop metal finish premium light weight sleek.boot time start time less sec ssd.display mukti gesture trackpad touchscreen pen useful speakers backup video streaming hours mild medium use least hours day single charge.genuine hp product website year warranty.ms office activation only.ssd storage available gbout gb ram most work lagging.cons display hd fhd ipsno keyboardno sensorother models available feature 10k extra.major point ssd ms office convertible pen includedthis best model market 30k',
 'fine @ disappoiting company omit ms office outlook pen funtionality great.also mouse pad noise attempt replacement one request',
 'first touchscreen laptop apple products touchscreen satisfied look functionality battery',
 'good model medium level users product day actual date.booting speed good only thing product many apps touch average quality.got attractive price old model',
 '16th jul hp pavilion able followed instructions next day pin blank screen appearing.lets c help vl update',
 'primeday offer old laptop low price worth price fingerprint scanner able laptop hp ram capacity hdd capacity helpful',
 'average product dead pixels screen box hp support contact amazon amazon agent replacement one better manufacturers website amazon third party retailers case box issues resolution description hd screen colour dull looks non hd windows configuration setting hd screen amazon hp dissatisfaction',
 'amazing laptop fast touch good pen worth best laptop price.note issue battery near hp descent',
 'lightning deal rubbish',
 'wise wise good laptop external hard disc variant gb sata',
 'product days rest thing good battery backup bad start full battery hours worried line product battery life hours happy battery',
 'product exchange i3 laptop fantastic.mcafee month expiry.rest windows ms office free fast response constraint gb ssd u amazon',
 'screen flexibility highlight available other brands well.screen quality good game picture better visible angles',
 'product details impression ms office part purchase representation misleading office office instructions reviews issue',
 'good product good condition backlit keyboard',
 'bad review laptop awesome laptop most people touchscreen disadvantage laptop finominal great mine craft pc pc mode tab pocket edition best laptop time',
 'amazing service amazing delivery quality product best market price thanks',
 'good product touchpad slower side speed highest satisfied product',
 'product condition',
 'damaged product',
 'handy lapbook fast worthy.different kind usb ports available many devices windows office kind great',
 'good buy budget touch screen awesome stylus response battery life amazing screen little unstable vibrates fan worth',
 'broke poor quality services good laptop pathetic service amazon',
 'excellent user friendly',
 'best laptop budget category ssd drive touch screen i3 processor light weight laptop',
 'lawyer usage reading research drafting happy way laptop first month usage',
 'keyboard screen laptop keyboard spacious laptop bends hassle challenge battery backup ok great',
 'screen days purchase.lets guys sad',
 'worried product.as date lap value worth money thankful amazon',
 'amazing product',
 'product x360 last months motherboard available',
 'nice cool product',
 'product image model product finger print sensor model',
 'product backlit keyboard keyboard feature fraud amazon seller',
 'good battery life fast excellent light user',
 'worst decision heavy looks same pictures',
 'good product delivery time quick',
 'good portable lalptop',
 'laptop good issues',
 'screen quality worse worthy product price',
 'good laptop',
 'battery life satisfactory',
 'everthing great',
 'good sleek',
 'good',
 'product nice 10th gen fhd',
 'performance ok audio output silent pc hp sound issue',
 'awsm look phon',
 'product good',
 'worth money',
 'price features',
 'osm great feelings',
 'awesome great value money',
 'price awesome',
 'laptop costly slow works touch quality good',
 'good choice',
 'lap many problems time right buttons',
 'good value money ssd drive',
 'much time pc file',
 'good laptop price range',
 'full hd display cherry top',
 'full hd screen ones screen pathetic',
 'good product',
 'worth money',
 'value money',
 'touch smooth display quality good',
 'good product fast delivery satisfied',
 'awesome speed good looks overall nice deal',
 'resolution great',
 'amazing',
 'worth money',
 'bad product product',
 'excellant product hp',
 'nice product iam',
 'nice producteasy usesmart',
 'features',
 'best laptop price',
 'perfect storage',
 'useful price',
 'only drawback display',
 'good product',
 'value maney',
 '',
 'best product',
 'product',
 'nice product valuable',
 'effective',
 '',
 'cool',
 'awesome laptop',
 'good buy',
 'laptop good specifications price touch screen pen',
 'cautionary tale laptop late feb service centre thrice third month motherboard june system min chrome ms word other hour hp people catchphrases sorry system that- ram system fault hp.moral story:1 hp laptop2 customer care person clue hp service.4 touch x360 gimmick fact machine hp',
 'hp lapotp june amazon problems start hp defects service km hp laptop warranty hp website laptop warranty hp laptops pcs hp warranty customer service center hp customer relation manager concept problem u r hp rpoduct repairs man only point contact cough money repairs blame customer.inferior quality material base panel hinges dell laptop self company dell excellent problem laptop hp 3k u',
 'hp best laptop ms windows gb ssd smooth',
 'laptop worst months laptop display support hp worst support hp',
 'osm yrr bahut zaberdast laptop hai high graphic game mai thoda lod padta hai yrr bahut stylish osm yrr laptop ke sath ese fold kare tablet bhi bana skte hai bahut badiya value money product good agar aap lena ke soch rhe ho jao le lo yrr kamal ka hai product hp bahut light whiegt hai',
 "worst product.screen poor.don't",
 'low sound cheap plastic touchpad',
 'keybord good processor',
 'awesome lapy light weight decent look',
 '',
 'expectations nice laptop price worthy nice specifications',
 'able laptoit passwordis new laptop weekand passwordhow way',
 'disaster',
 'feature great laptop fast performance looks much value key board quick smooth function little heavier hp surprises innovation product little lesser previous one spectre',
 'fraud',
 'excellent product users manual pen available',
 'light small laptop easy original microsoft os easy upgrade pen use fine cell boot quick product key ms office seller activation key.long term',
 'hours days weeks product technical stuff review helpful you.to honest scared hp good reputation review product detailed one diwali sale time purchase prepaid manner amazon cod products much return only replacement laptop yikes homework whole days basics laptop type ram processor battery strength lot one greatest value lowest price amazon laptop buying lot own various models one priorities).quality laptop silver textured lappy star keyboard issue few customers letters dark gray much contrast issue coz fast typist keyboard images keyboard review fast laptop initial setup few minutes lappy fast research scholar gaming tabs weeks months lappy gb ram tabs open star same way heavy usage few months usage rating accordingly.how battery % % videos browsing study stuff past hour % doable happy one coz particular specification related battery usage specifications battery mention tech friend upto hours regular browsing stars own jealousy laptop hp available touchscreen series same price claim hours battery life average upto max friend touchscreen reflective surface reflective super sensitive visible side angles peripheral position one stars laptops hours battery life available same price battery heavy screen only reason hesitant reflective surface screen absolute headaches eyes scared own reflection horror movie product matte screen screen skin guard screen specifications standard backlit screen available pleasant surprise matte screen glare low brightness laptop aesthetics greedy lcd whole screen fond black body screen tv laptop sense higher screen body ratio price this!sound sound better clear loud stars coz greedy girl louder better!ease windows tech friend windows coz hangs glad windows little nervous transition smooth easier access.ms office version phd scholar value willing version only office version version mini heart attack mins office version notification current version office home student version microsoft search feature star lappy week longer period time update case issue this.why online offline same price offer hp laptop same specifications gb ram free goodies headphones bags usb lights pendrives gb ram same price no brainer goodies inr new ram gb difference installation charges old processor least matter priorities goodies better processor aka speed.i issue laptop model keyboard number button icon inverted comma/ button malfunction hardware icons small matter mind traditional keyboard style hour okay o.o first place strange weird hour laptop mine magic customer support amazon replacement lengthy review',
 'worst laptop month use battery mark keyboard light max hrs speed avg brother student u r professional worst laptop hp',
 'system ms office trial version',
 'packing worst parcel packing box amazon inside hp product packing good laptop nice',
 'month issues found.i',
 'good normal personal use',
 'good',
 'laptop good little slow',
 'good quality product',
 'laptop awesome',
 'value mony good laptop.laptop battary laptop performance',
 'good performance',
 'good perfect movie watching.sound good system slow first day tab long time system lot time hp customer support steps system check regular use',
 'display quality good slow processing',
 "value money purchase battery hours full hd display)boot time 05to sec critical updates boot time performance windows daily use students.didn't performance games.overall performance",
 'good little bit slow performance time',
 'good product good battery time low',
 'lap sep morng.worst delivery experience amazon laptop amazing better expectations.amd awesome processor i3 series.its good days performance smooth quick dell ryzen laptop pure graphical performance.if ur midrange gaming laptop best segment guys bad reviews confused.if u utilities full hardware software facilities thn ur gng this.ill additional informationpros:1 amd ryzen processor better multi thread performance intel i3good gaming2 performance highend game u upgrade ur ram gb pro3 m2 slot ssd4 min % battery inbuilt5 windows life time validity.6 dvd drive smooth light weight kg8 price segment.cons:1 hd display fhd2 battery last upto apprx heating little bit guy abt processor heating battery major issues amd.its default abt heating problems ryzen next level processor amd handling heat battery good other amd.laptop abt u',
 'laptop great value money old laptop laptop 23k t regret many upgrade options available laptop performance laptop t other laptop nvme m.2 ssd.so laptop last few weeks upgrade issues gaming photoshop many tabs opened.then green m.2 gb ssd sata speed windows os ssd wd os clone tool available wd website significant improvement performance browsing photoshop cc speed gaming fps md computers rs 3500.if budget samsung evo samsung evo low boot time 10sec hdd 26sec ssd gta ssd loading time playable lowest graphics settings.then ram gb ram os adata gb ddr4 ram rs overall performance laptop ram dual channel.the laptop samsung m471a5244cb0-ctd ram capable laptop motherboard 2400mhz help hp forum computer expert compatible ram laptop chance compatibility other ram other adata ad4s2400j4g17-r sure laptop technician ram t support t loose money.i t support product.now gta average 30fps low settings photoshop editing lag filters other effects.pros amd ryzen performance goodcan nvme m.2 ssd samsung evo best)no issues.good windows homefast chargingcons battery life max preciseno keyboardspeakers averageram ssd slot accessible',
 'work laptop nice battery life excellent picture slight hesitation loading graphics power gaming laptop excellent work horse businessalso % cashback laptop vqr.in/83',
 'ram gb ram specification ddr4 mhz sdram slots ram issue laptop easy hp laptops responsiveness laptop ram addition case further enhancement performance ssd m2 slot available need picture ram',
 'pros vega graphicssupport gb m2 slot osall portsvalue money 22k discounts.con worst screen allvery slow hddexperience suggestion initial days performance ok mcafe windows defenderbest part addition ram m2 slotso 1st gb ram didn t performance improvement.then gb green sata sad os voila os 30k gb ram gb ssd tb hdd ryzen',
 'laptop notepad hours time laptop good amount time product hp amd ryzen laptop tb hdd windows home black/2.04 kg hours long battery false writer basic needs applications laptop computer ms word ms excel paint google chrome firefox browser movies youtube games battery hours other features fast fast data connection websites blink sound quality great laptop few songs awesome experience friends laptop battery good option',
 'best thing laptop processor same i3 8th gen cheap price 3k extra gb ram module gb sufficient windows many laptop slow gb response more hang ups ssd wonders yet.edit ssd drive wd green gb m2 drive rs amazon speed difference apparent test results system boots secs secs responses better reading speeds good great go blue samsung evo expansive speeds range 500mb s green budget users satisfied performance price paid.edit many battery backup moderate brightness hours max wifi moderate works movies(not ultra resolution upto 1080p 720p backup hours word excel backup hours wifi lot battery',
 'guys laptop good gb ram ssd slot lappy ssd amazon available rs version ssd lappy.i cash worth it.very .touch pad last full browsing good',
 'delivery quick good price amazon sale .the laptop good able laptop hand great average more .the processor amd ryzen u good comparable intel i3 7th gen .4 gb ram enough basic tasks gb planning more performance great additional bonus m2 slot ssd ssd ur tb hdd windows ssd magic speed .one thing laptop sound low other standards sound cracks high pitch voices ve drivers sound settings use noticeable laptop.if ur upgradable laptop good processor budget go sale k budget ssd atleast ram significant speed boost games',
 'more month review hp model windows windows error acpi support contact bios vendor bios upto date vendor).for linux environment wifi seperate wifi adaptor ubuntu kali linux linux environment graphics 250+mb video ram worst part o adobe programs battery backup full movie % % camera quality good display lot friendly graphics driver problem supplier feedback bsod error applications graphics application problem manufacturer defect windows google much bloatware battery performance dark mode available personalization rating medium type users normal users',
 'product mark amazon bcoz problem switch abd bateery backup worse new laptop abd battery backup hour',
 'laptop update window updates charm superbb speed samsung evo ssd gb crucial ram',
 'amazing laptop beautiful sleek stylish bulky performance fast remarkable battery backup commendable crystal clear display audio speaker rich bass hd clear sound.processor graphics magnificent overall hp wonderful product thanks hp side thanks',
 'price great laptop price hp . full stars better deal win10 festive sale great price performance new amd ryzen processors vega graphics match intel counterparts performance watt idea hp other manufacturers performance win10 bloatware ancient tb hdd little more gb sdd better stars sdd sdd hddthe worst screen t worst screen life year old vaio vgn n31m w awesome screen reason laptop display bit colour rbg model stars screen external monitor',
 'screen great .yet additional gb ram bloat ware firefox chrome explorer few tweaks laptop hanging battery hours recharging fast oct sale @ sbi card instant discount rs amazon cash price laptop better i3 laptops',
 'laptop oct oct oct.so day delivery fine problem.next packaging poor plastic air bubbles wrapping laptop rain wet wooried laptop thanks hp laptop value fir money discounts best device range.sound bit low low ram additional gb ram beast.display heating issues satisfied',
 'price range hp good budget laptop games regular basis ram gb better extra gb hanging issue others editing work auto cad game battle field bit problem battery doesnot more heavy heavy use hrs screen awesome hp service good inbuilt microsoft office microsoft awesome use heavy games office work',
 'laptop past months warranty period response amazon horrible service toll lines landline service',
 'gb nvme ssd gb ram good upgrade laptop seconds price point gaming decent fps modern combat battery backup upto hours hours other fine laptop light weight',
 'ryzen good windows ms office nice silver look attractive kb mouse display cheap angles good little bit 4th generation processors battery life average gb stick performance performance ssd m.2 bus overall processor better i3 7th generation gpu weak nvidia mx110.review months port good sata m.2 ssd laptop charm lags dual core ryzen laptop m.2 windows10 ssd tb internal hdd storage',
 'build quality category budget laptop notebook+no heating issues fingers heating issue other reviews purchase)+display color reproduction good+touchpad response good.+ excellent amazon customer service replacement week)cons:- first laptop issue battery backup 2hrs30mins replacement laptop amazon customer service 4hrs30mins backup way upto 13hrs battery backup"- system slower antivirus software',
 'future generation ryzen processor advantageos vega graphics mhz ram ghz processors tb hdd slot available upgrade optane memory extra speed system value moneyconsdual corecheap plastic material',
 'wise excellent wise extraordinary life time inbuilt window camera quality usual others competitors speed usual gb ram much fact specification overall value money good product',
 'value money laptop hp deals 25k festival deals price slow minutes windows rivews suggestions additional gb ram gb ssd installation process youtube)now booting windows better good deal rest money ram ssd 30k laptop i5 notebooks thanks',
 'pros premium look lightweight ryzen lower pricecons battery removable liitle gb ram mcaffe ms office available days free trial',
 'net light satisfied product.rest doubts amd one deal clincher festival price point.prostotal value money ports available dvd rwthe ryzen good problems that- comparable i5 imho videos games smoothly4 gb ram enough- less w10the key board touchpad convinient loud backup 2.5hrs cell onlyslow bootup- windows maybelot bloatware pay(ygwup)plain jane looksthe screen resolution poor- hdkeyboard easy night/ low lightsuggestions upgradego ssd -120 gb amazon boost gb replacement light behind!all loaptop web weekend office work games budget laptop',
 'laptop sis birthday battery dead experience laptop!!1.amd good light gaming editing browsing movies online backup:- hour battery backup.document editing video editing almost1:30 hr browsing hr last online movies hr movies battery life hr laptop hour battery backup.3:-display main con laptop ok type display sound output machine good dfx enhancer dfx enhancer sound output great.5:- performance:-over laptop ssd samsung evo evo better performance more gb more ram(1 extra ram slot available).i 8=16gb)crucial ram coz system dual channel ram.after upgrade laptop boot time minute sec gaming experience laptop good pubg cs fortnite farcry battlefield 1,rocket leage combat overall rating month laptop battery dead hp service complaint register 10th technician same excuse same time sir problem days more days pics hp product able services hyderabad metro city hp product guy good hp service example hp service',
 'laptop steal great indian sale discount return old laptop decent performance ram gb worth rupee able graphic intense game gta v lag frame drops student laptop browsing general usage sale better offer',
 'inspite ram gb speed machine laptop hour slow display new tab time problem lid open position everytime machine sleep mode battery amazon such junk laptop replacement window waste money',
 'laptop fine up.when laptop cpu fan full speed first moment screen black bios warranty hp website months warranty year seeler defective product disappointed',
 'harrowing time handling manufacturer seller problems warranty issues day product order seller information warranty days warranty update.battery poor display fine ram decent s l w gaming earlier reviews.hp customer care race worst performance race side ifb samsung morphy richards others',
 '17th october same week faulty hp technitian un able fault legal steps',
 'youtube channel trip days good laptop video reason days lot mall amazon budget good extra money it.good fast delivery amazon next day amazon prime laptop battery charging fast good normal work typing browsing editing software good slow course 28k laptop min video mins.one suggestion extra gb ram good sure latest editing software',
 '24k lenovo z500 i5 dedicated graphics card laptop benchmark sure better choice i3 laptops time.4 gb ram enough lag free performance extra gb ram gb ssd programs photoshop android studio hdd least minute lenovo competition old i5 rig ryzen i5 dbattery backup hrs real world use hrs web browsing+programming+video playback range.the screen fhd price good gamer refresh rate use screen bad keyboard good good programmers.speakers decent good bad.m.2 slot big plus ssd thing it.ports plenty ports usb ports bit tight addition usb type c good',
 'review months use.brought great indian festival sale arch linux gnome 3.32pros:1 official windows home lifetime license2 battery backup good hrs continuous usage.3 speaker sound quality loudness good.4 apu compute intensive programs it.5 keys good noise.6 camera quality good.7 m.2 ssd sata disk.cons:1 ram gb windows gb standby.2 hard disk slow boot time long.3 f.16 bios update support several linux distros.4 new vega graphics hard several linux distro.in opinion laptop gaming limited vram.one boot time os ssd.games ram upgrade',
 'laptop 22k old sony viao value 5.5k most laptop extra ram m.2 slots both.i claim battery life hours naive hours continuous use fair enough.day day apps ms word ppt pdf readers old sony slow apps.however only gripe horrendous display screen resolution angle pathetic hd stuffs laptop screen immersive reflective budget option ok option ssd ram',
 'day day task upgrades ssd boot time.2 gb ram lag.with upgrades xps macbook.if requirement gaming videos ryzen vega better i3',
 'decent laptop month use point files week external hard disk laptop empty possible long life kind laptop os laptop problem week usual slow self',
 'slow google chrome time unable windows laptop.even replacement money asus lenovo hp',
 'complete laptop options good machine other laptops price.hardrive slow blevive years old harddrive worls.boot extreamy slow minute av hp product software preinstalled)copy process slow.good part m.2 slot hardrive os more times difference boot time own disk.second good thing memory slots gb memory small problem memory ram 2666mhz higher specification memory compatible memory.rest fine',
 'laptop lot time problem processor on1 june warranty warranty period',
 'laptop 14th 19th average speed delivery laptop top notch sky expectations best laptop cpu performance miles intel uhd 620/630 gpu performance.2-handles regular work video youtube stutter day day purpose.3-it well(at 720p gb ram gb ram low recent games gb ram adequate windows nowdays gaming good stutter free performance atleast extra gb ram.4-i emulation purpose good performance pcsx2 cemu cpu intensive intel pcsx2 cemu lowest settings intel gpu cemu retro games limited budget best budget option.5- very premium laptop black usb ports fast transfer m.2 port(which faster hdd storage os m.2 serious boost performance most budget laptop facility.8-metallic finish keyboard premium look.9-pretty loud speakers10-no heating(gets little warm full screen12-not heavy- kg considering inch screen.13-charger light weight important hour back.cons-1-pathetic webcam most laptop thing manufacturers good webcam nowdays megapixel cam mobiles good webcam laptop?2-not great angles screen screen reflective problem day time lots reflections distraction.3- problem unit usb ports tight usb cable etc.4-not soo great battery life description most economic way possible hours battery life better normal laptop less hrs battery life future optimization bios driver.5-wobbling screen hand.overall fantastic laptop price happy expectations',
 'couple weeks laptop good touch wood years mac hp first time windows impressed performance good thing ram tech geek way ram laptop lag way ryzen processor nice slick sure device drivers order sure device improvements good work gaming web development battery decent lightweight lappy',
 'less video ram adobe photoshop cc enough vram pure performance asphalt midrange games high range decent gaming performance battery life network heavy great indian festival sale rate awsome im sad vram issue',
 'month good disk slower side wd double notch ssd gb kingston charm total 30k total inside picture help',
 'laptop 24th dec christmas morning!i performance slower side gb ram surprised fast gb ram total better is.will green m.2 ssd os performance.having laptop cause box great good value money upgradeable other laptops category price point.amd rocks',
 'good looking laptop price ryzen onboard.also windows ms office included.performance wise acceptable price point day day tasks minimal hiccups.upgrading extra ram ssd better performance battery average okay price point hours moderate usage.display antiglare strain eyes headaches prolonged sessions.keyboard tactile placements keys pub g lite match playable buttery smooth performance ram gb help.dual speakers loud closed room volume headphone jack amazing.overall solid offering current price rs discount sales killer 6k ssd higher ram diwali time second thoughts',
 'high expectations good reviews terrible first thing display bad hd most.the pages pixelate display people eighties steve jobs such visioneries product stuck damn ok years days replacement criteria guys amazon second problem time keys keyboard hardware issue amazon drivers hp site hardware issue softwares support drivers improvement.my question amazon account more years amazon beginning india',
 'reviews slow build compaq xp os mb ram image file millisecond one gb ram seconds xp os cd size less mb one security update gb days operating systems heavier slower heavy protection mechanisms computer user technical expert ram gb less laptop good buy battery upto hours mc afee anti virus month free year device option win lifetime validity"usb ports such simple factor unnoticed hp feedback complaints usb ports laptops years left side laptop usb ports otg sandisk flash drives same time first entry second flash drive usb ports matter concern millions users designers usb ports atleast inches.make sure option software microsoft store unauthorized program microsoft store more programs stall slow laptop background days level minutes time seconds system force power button laptop programs microsoft store system workable wrong mcafee anti virus program strong reason hp mcafee anti virus.there light indication laptop keyboard caps button mute button lap days people preoccupied absent minded lap screen display blank few minutes idle period right light glowing lap good reason light keyboard spacebar better laptops',
 'worst laptop life.please new mins bad aspect good ms office use useless laptop amazon laptop drivers software amazon agents laptop slow laptop times day',
 'first day review slow startup hour initial slowness apps settings usual.good timely delivery amazon.will use days days slowness lot time certain basic tasks ex below1 right click desktop new submenu seconds2 multiple browser tabs chrome system slow3 settings tab secs open.overall satisfied performancethe positive battery update intermittent disconnection issue -after time star option star disappointed hp 7th laptop life worst price less quality laptop slow minutes google chrome.not',
 'useless laptop good tabs chrome low graphic trading charts good word processor word documents much time mistake budget money budget laptop better configuration more emi payback',
 'laptop good dead slow ram g enogh.hp ram normal normal use disk write coach uninstallatio virus software laptop laptop day day upgrade gb wil help laptop normal',
 'product much a. gaming laptopand bright',
 'blogger honest one jot first laptop last bad experience amd high speed many other positive points manufacturing issue noop laptop processesor worst screen lags hangs several minutes computer start menu sec 3rd party app freezes pc bluetooth device ready power button minutes pc cursor freez power button help amazon technicians hp technicians number points problems unnamed problems accross computer u points regret ryzen amd intel cores',
 'worst product da drivers laptop slow major thing dot display major problem display quality bad touchpad hp',
 'star minutes professional usage browser ms word videos music much time.upgrading grandpa age upgrading panel core duo starts work laptops endorse hrs battery big trap.such big international company hp brand market customer sake junks troubling other laptops range 15k satisfied valuable time junk',
 'disappointing hp laptop hard disk year laptop usage minimalthis product problem hard disk year purchase disappointing inner boards laptop old boards hardware repair person new brand device amazon laptop warranty november date purchase november warranty september hp company miss match warranty',
 'speed slow battery life short.amazon product',
 'registration hp site months warranty year product hp website months strange',
 'good laptop budget useless ssd upgrade expansion hangs mild browsing light multitasking good thing ssd slot dual channel ram expansion update samsung evo rs adata ddr4 ram rs1599 amazon laptop breeze boot time sec minuetes loading time quick ram expansion ssd laptop useless weight best budget segment',
 'most points importance ram gb laptop useful os gb noteworthy more asus laptop same day intel p battery life usage better price point same os gb ram hdd benefit laptop other laptop usage usual browsing movies bit office work ssh terminals c programming benefit gaming evident better crash.overall warranty support good hp support problem.i guess imperative warranty thanks',
 'laptop sale 22k discounts good value money product regular everyday use heavy computing gaming).mcafee lot laptops days lot cpu disk utilization laptop slow laggy mcafee alternative eset removable battery most conventional laptops unscrew entire base battery other components ram hdd battery user replaceable base panel few days.also ram unable exact ram spec bios speccy brand name base access hardware it.definitely better gigs ram ssd',
 'laptop diwali sale more month complete value money.amd ryzen processor better intel core i3.i ram gb processes fast gb ram performance good).another advantage availability ssd slot other laptop range provision.overall laptop',
 'beautiful product hp love device first day light weight specs front decent processor ryzen graphics driver games high end good laptop engineering students general purpose daily use slot m.2 drive future ram gb b 8gb product fantastic price',
 'laptop good gb ram better performance extra hdd slot fyi surprising laptop high fps dota good normal battery life(4 hrs normal weight',
 'product need cheap best laptop product cheap worst product better laptops respective stores product actual price laptop old model e2 series money offline',
 'happy machine fear heating issue processor multi little longer duration hopeful problem longer run.its performance equivalent i3 graphical performance medium load gaming i3 processor heating big time problem multi games movies videos long time heat experience weird problem much heat weird sound few minutes restarted.battery life good other hp machines claim larger efficient battery life page true',
 'laptop great indian sale delivery ram gb win10 sluggish out.i games low settings.1 pubg mobile emulator fps csgo fifa fortnite gta rocket league fps 907.dota fps dirt rally 100this wellbattery fastand drains games long backupdisplay quality okayspeakers okoverall good package 22k',
 'good laptop price rupee amazon cashbacks final price rupees good ms office browsing good programming heavy editor visual studio light weight battery backup hours medium brightness gaming',
 'laptop cheap ryzen processor mid - range optimum laptop work daily use photoshop effects microsoft windows lagging more sodimm gb total work other work distributin threads work awesome cpu.as games good graphics part effects old laptop thankx hp thankx seller price',
 'good product good pricing sound quality high good',
 'laptop moderate gamer product rog level gaming killer gaming rig 26k bespoke custom pc fund thst able years few houses minecraft terraria trackpad responsive typing enjoyable.windows updates features better win7 it.overall solid starter typist laptop actual graphics card gaming',
 'handy light weight basic purposes laptop wouldn t recommend gaming ryzen multi - multiple applications simultaneously.out box warranty months hp warranty year.ms office trial version.decent battery life typical laptop display good value money buy',
 'guys days consecutive usage review.what product dislike.pros cons generic purpose learning education coding manual small businesses laptop sufficient terms build quality premium feeling glossier look jet black laptop.2 wide screen less bezels hepatic feeling videos youtube other social media bright colorful eye output movies.3 laptop apps lot apps free most usable necessary apps daily usage microsoft edge web browser fast responsive firefox much data.cons battery life less hours charge thing good charging time charge thanks fast charging.2 graphics ok material.3 many updates windows hotspot data hour.overall good stylish looking laptop.i budget less 30k',
 'excellent product range window decent gb ram upto tb hardisk processors nice light weight supercoo smart easy many products range decision product nice product amazon hp',
 'better i5',
 '25k months issues ram slow price laptop worth it.i browsing other daily display nice big speakers loud video calls clear satisfied purchase.if worth section',
 'value money laptop price range best normal use documentation inbuilt windows nice product thanx rs amazon balance',
 'weeki normal ms office little entertainment.pros- value money 27kgenuine win anglebattery charge fastscope upgrade u want(ram ssd video editing port dvd writergood normal student usecons- price thing keys possible price',
 'problem laptop terms usb device battery issue laptop other laptop payment additional warranty card',
 'pros display goodspeaker output weightbattery backup okaygood hddcons heating issues lot time windowssuggestions windows gb ram',
 'laptop slow issues first weeks case return window laptops restarts couple times day customer care team unable process hp warranty clause painful days+ required support product ardent hp fan products',
 'laptop great item keyboard design poor silver keys grey lettering invisible function keys miniscule font grey font regular designer holiday keyboard stars huge factor efficient usability light keyboard keys machine great',
 'recommendable slow aspects system.five minutes half hour approx',
 'great laptop price features amazing.design good sleek processor good amazon sale good price value money happy',
 'worst product lot iron box windows compatible month boot error battery less product intel store',
 'product ok speaker day basic defect non booting laptop 1st amazon new speaker issue',
 'worse laptop old acer d270 mini laptop intel atom processor piece garbage laptop tabs browser apps seconds dont buy ryzen slower intel atom processor vega graphic configuration useful',
 'screen quality good different angles straight view lights keypad low lit rooms slow ample ram memory space',
 'product same ms office activation issues seller helpful issues happy product.thanks amazon thanks genuine original',
 'update alright next update smooth butter step wise alterations laptop.1.uninstall mcafee windows defender capable normal threats malicious sites user case avg pretty light ram2 control center windows update updates restarts boot ups further update available hp assistant drivers laptop hours time necessary.3 task manager disable microsoft drive etc.4 task manager view tab refresh speed highest.5 start bar computer/ windows management processor speed % battery ac power.after laptop boot nice sec lag multiple windows videos heavy word/ excel rating star now11 grt pdt much comparison i3 ane i5 amazon engineer visit days wht days',
 'amd robust ryzen latest development speed screen spectacular rugged body high aesthetics',
 '25k great build gud display decent processor light gaming bag only downside 25k great buy',
 'time charging high emblem razen radeon laptop previous customer matter first day time folder videos time',
 'best laptop 30k',
 'amazing laptop price range upgrades bonus fir general use one more gb ram games wanna play gta lags meduim graphics',
 'pros nice design quality.speaker good.battery goodperformance extra ramcons;screen avgsuper slow ram upto 8gb.for steal',
 'processor slow wastage money time disappointed',
 'good laptop price range satisfied product thnk u amazon secured safe delivery product guys',
 'honest review week better specifications 25k budget pros good battery backupfast charginggood audio effectshd screencons little bit laggycons matter laptop budget',
 'laptopperformance speed lowit gta vice cityworst product',
 'worth money hd good simple gaming graphics wanna smooth experience good daily life office work end features',
 'worst experience amazon laptop time hours charger laptop battery % lol product policy product product',
 'good product price purpose heavy gaming multi taskings browsing other activities heavy usage',
 'seller number hp laptop hard drive help warranty period hp company data copy product key.it windows copy.seller copy serial key.so contact number',
 'good build quality stylish design impressive price utter waste example chrome browser seconds long time long breaths laptop good laptop meditation practice',
 'minutes mins data many attempts word pad hp amazon people kunny trend amazonbutnow hp laptops simbony mobiles speed data yar',
 'slow processing headache video seconds thing laptop impossible',
 'best value money laptop amd ryzen processor gb amd vega good machine photo editing gaming screen dull bright specs suits college student academic works',
 'month battery good look laptop basic work media slow lap',
 'processor slow ram slot gb ram total gb ram speed ok',
 "laptop slow seconds app open windows explorer etc.browsing slow ms excel slow.i windows updates laptop multiple times fix issue won't product",
 'slow green ssd gb additional gb ram fast boot time os hdd acronics software',
 'everytime pop boot device 1st laptop worst experience boot disk',
 "awesome laptop budget.the laptop enough battery life average worried sound quality good design impressive upgradation future better performance enough speed default configuration.don't i3 7th gen processor",
 'windows minuteswait logon screen minafter login icons wifi connectivities browser- seconds',
 'worst product july lots issues n days screen black helpless.customer care response poor',
 'brilliant product extra set ram better performance first order day performance gift product delay prime membership same seller delivery dates',
 'laptop fine boot issues hdd)also hdd poor quality ssd laptop',
 'battery good bad screen antiglare eyes buy date online warranty support software updates',
 'amazon summer sale card discount).nice product range.suitable daily usage.if budget 30k this.better intel i3 7th bad thing full hd price one full hd display',
 'best laptop good choice price point movies n half hours',
 "product time screen blank many times additional apps product now.i'm product last months waste",
 'months screen white patches hp warranty kind issues normal hp yrs warranty it?dont such products',
 'bad laptop worse laptop life minutes windows application start minutes mouse button horrible pathetic laptop hp big brand substandard product range',
 'display lap 1st time issue display lap nd new month same problem display model worst hp',
 "dear friends don't leptop hp laptop bcz leptop month kan slow kind service last month contact",
 'personalcannot heavy loads video editing high end gamingwe casual movie ms office purposes value moneystill problem product',
 'office use games gta v',
 'amazon side bad bad product hp laptop start problem just15 day bad 2nd hand product',
 'month complaints bit slow times other great budget laptop',
 "quality wise fine performance bad output i'm tab time satisfy performance",
 'laptop microsoft windows os . os manually hp default year warranty laptop bad service',
 '9th june right click charger charger wrost experience amazon',
 'nice worth',
 'hdd problem warranty hdd additional gb crucial ddr4 ram excellent display quality average battery backup hours medium demanding games playable high set.good autocad daily tasks',
 'best laptop range 25k speed new ryzen processor powerful',
 'biggest mistake product lenovo other brand refund request worst laptop employees usage pieces disappointed',
 'time apps normal overall nice product range price',
 'battery backup hour description many times amazon product value money boot time laptop look body poor rs-24990',
 'worth buying display good sound quality good amazon choice perfect',
 'design ok lightweight bt slow laptop atleast particular peice bt dissatisfied performance good day day usage',
 'pathetic product hp dustbin usable crap laptop hp kinds laptop',
 'value money nice performance gb ram',
 'good reviews system slow os weeks lot issues better',
 'processor ok battery hrs.i more battery backup',
 'dam slow worst product amazon first time amazon reviews',
 'laptop operation slow replacment options.fake information description',
 'power button able fan sound high silencer',
 'nice product other price more',
 '25k diwali sale nice laptop casual little bit heavy usage face problem battery main highlight issues',
 'price decent laptop ram minimum gb laptop slow.upgraded crucial gb ddr4 ram performance better.suitable everyday laptop',
 'worst product life 22k pathetic slow laptop laptop slow able',
 'performance decent daily office task light little bit slow hp i3 same range better mine laptop slow',
 'good battery longer hours screen quality nice.system improvement',
 'superb quality product good images hours prime customer functions specifications same site best buy summer sale',
 'more hrs battery life.slow processing speed',
 'hours battery life windows updates first try web browsing fast other applications slow',
 'laptop screen discoloration manufacturing defect amazon replacement',
 'nice product ryzen better intel core i3 7th generation amd vega graphics battery maximum run hours full charge mild browsing.sound quality different ok.display quality good',
 'laptop opening laptop wifi connectivity issue post network reset update purchase',
 '% discount gb ddr4 ram product ready 25k rupees intel i5 performance same spec new ryzen cpu products worth',
 'computer days months amount effort hp service center hp problem business laptop',
 'good product price use basic work students',
 'slow offen hangingi din user manual',
 'excellent product hp gb gb ram laptop extra ram',
 'battery life hours pathetic more worth',
 'nyc laptop value money bcoz maine isko ek mahina use krne ke baad bol raha hu maine isko tha worth next month ismay gb ssd gb ram bhi upgrade karungaaa nyc perfornance battery life nyc product',
 'delivery good day display quality average battery performance worst movie fastly.processor performance good quick accessing',
 'product properly.just minutes bottom operating system single photos data store product third class product',
 'good basic needs internet surfing movies good buy price',
 'best laptop history hp kind laptop 21k performance little slower',
 'laptop good slow speed professional games money 28k more m',
 'worst laptop don t',
 'random office work okey',
 'bakwaas hai ji',
 'laptop slow ishtar amd',
 'price loptop asphalt air bone game frame drops problem pubg multiple tasks memory',
 'product many times disk % memory first poor experience amazon',
 'poor performance several time new product manufacturing defect poor value money',
 'useles product lot',
 'lot patience time laptop dead slow times lot time waste money',
 'defect adapter replacement replacement laptop local packing hp box amazon packaging product',
 'good laptop price diwali cheep configuration happy',
 'plain language movie song good c++ programmings',
 'best laptop good looks great battery nice great fast delivery',
 'best students normal use laptop',
 'slow processor price less intel processor 3k intel type life time headack',
 'seller sensible laptop sleeve bag laptop good price mere expenditure 600rs big loss seller',
 'nice laptop amazing price',
 'days mark condition good laptop deadslow',
 'amazing deal battery backup- hoursdisplay goodperformance smoothin build windows weight',
 'product month warranty year warranty issue hp store wrong invoice',
 'good day day use mild editing programming work ram',
 'delivery fast first day display problem slow laptop minimum overall bad experience laptop worst laptop basic use',
 'good college students home use movies office work heavy games bit laggy price performance ratio great',
 'satisfied purchase only issue quality purpose',
 'acer aspire v5 intel i3 laptop pentium gold processor same lesser l3 cache memory mb heating other issues ssd requirement day day browsing videos good laptop price.good price old laptop card discount icici diwali sale',
 'few days love product light large fonts keypad windows easy',
 'initial impression excellent light weight thin friendly.super fast booting ssd laptop last long.lets corse time',
 'item super fast delivery laptop few weeks use',
 'fast performancewosrt display',
 '',
 'great product great price',
 'good buy',
 'slim light weight traveling.good battery time min office best',
 'fast good regular office home work',
 'laptop decent display boots price microsoft office listing trial version vendor microsoft office available hints trial version.when amazon customer support product trial user answer products user answers appropriate2 license complete cause deceptive advertisements vendor',
 'today basic set original windows ms office 2019(life time).system terms booting.those ms office days ms office own outlook gmail yahoo side bottom search box type excel excel.3 outlook username password having.4 life time office life time daysystem superb fast terms ms office gc ie system bios lag speed first time updatewhen right bottom hp page updates important update bios bluetooth lan system slow update',
 'months time hard disk off.laptop slow expense new hard disk.amazon larger period return window sensitive products loss laptop seller.better offline stores croma exclusive dealer brand',
 'gb ram gb ssd homems office home student lifetime word excel pp onenote ms office month above features good price coding browsingthe boot time fast thanks ssd space unnecessary files pcvery lightweightbattery backup goodvideo quality good graphicsnot great gamingmy verdict pc coding browsing stuff one best budget- lags good external drive hdd stuff movies songs screen quality decentbattery life goodlight weight',
 'laptop sleek lightweight product startup post slow windows gb ram unlocking laptop post startup mins slow laptop fine browsing more work heavy excel sheets games web pages time lag seconds sound quality better other laptops price fine product browsing more',
 'reviews laptop amazon return step solution laptop laptop tad bit speed first generation computers world.now laptop.i amazon inr utter disappointment product',
 'superb laptop win10 ms office gb ram/ gb ssd quick boot lag dropbox gb space free drive gb space extended warranty amazson optional pendrive gb documents exchange rs.23,236 rs.4760 old sony viao sbi card discount happy purchase good screen battery backup miss backlit keyboard great',
 'hp laptop inch light weight genuine softwares perfect combination search decent laptop.after couple days working pros:1 windows ms office genuine2 light weight handy island keys keyboard lot typing daily core smoothly4 alphabets broader font size5 decent display webcam battery life hcons:1 smokey gray colour lappy hopeless same grounds jet black excellent option unavailable moment amazon present configuration2 performance bit slower side configuration addition gb ram serious problem3 hardware light weight fragile low quality4 heavy gamersverdict value money stars design lappy hardware perfect companion cost',
 'first days mouse laptop point hp quality laptop screen degree original e high high discount actual price happy quality',
 'hp products service waste faulty part days further updates experience',
 'laptop months horrible beginning.the speed slow secs small size file hp much help screen session.i friend laptop speed unwanted unnecessary software mcafee windows defender unwanted game software fragmentation order space holes memory.it able software quick system performance',
 'best laptop price range confusion ms office trail version laptop days ms office student version life time free.just',
 'thing ad microsoft office free silly month trial worth better options available lifetime mso order return',
 'software professional product light weight faster booting time camera quality poor days own updating bios hp reasons same time os windows surprise features mobile instant basis several attempts surprising windows commercial nature cunning features reasons contact wi fi feature regular basis default one ms office microsoft computer friends cd fast light jet black colour attractive day good condition bag free',
 'nice laptop boots less quality last more hours medium brightness average usage sound moneycons:-cheap plastic body scared anywhere.-in less month print keys poor quality print.-webcam quality pathetic vga camera adapter heavy % weight laptop purpose portability',
 'poor qualitybuild quality poor poor plastickeyboard softperformance brand poorif 27k 29k laptop higher range laptop good full hd display ips best.if normal work lower range less ram keyboard display jerk',
 'pro exchange lappy i3 7th gen gb ssd gb ram original win10 ms offic weight kg price worthy purchase looks laptop good.cons poor web cam screen quality good avg backlight keyboard speaker bass much.overall price hardware specs m happy photoshop video editor good student office people asus x200ma hp configuration hp boots',
 'hours laptop bit handy cool sleek beautiful light battery charges quick tons good things gb ssd gb ram main highlights only thing better screen under big deal hd+ display good enough.thumbs hp amazon',
 'new laptop day date purchase slow performance hp many times hp thry window rs cloud recovery service warranty wtf worst experience hp problem 1st second day other wise u irritated hp service',
 'laptop reason ms office procedure ms office hp customer care remote connection it.its weeks laptop hp customer min+ duration ms office yet.terrible experience brand new laptop hp',
 'thin light weight laptop good performance good windows work set automatic easy display great price point acceptable good buy',
 'price best ssd laptop laptop hdd naive tons storage external drive screen decent better full hd display battery life poor gaming session battery low laptop light comfortable camera poor least',
 'display good sound quality superb few seconds boot quick ssd biggest plus point battery life requirements work entertainment purpose go product price range',
 'excellent value money fast boot thanks ssd i3 processor gb ram gb ssd win os ms office home student great deal',
 'unbelievable laptop price point match available sleek light weight point large sum money other brand best product price',
 'cons day old laptop signature slow processing more time usual pc feed input.display quality i m bit worried display quality gentle press back display display merge color spot pressed).pros life quiet good upto hours hoursspeaker quality goodlight weight n compact sizei star days usage',
 'quality great super thin laptop day andpros ssd m.2 nvme pcie type8 gb ram ddr4core i3 7th gen mb cache3 cell batterysuper thin body lightweightcons fingerprint mandatory everyone)no type c port few people type c c cable common)lookwise simple.recommend',
 'product i3 laptop numbers speed poor security window visible window screen products',
 'laptop movies day day work good fast window gb ram 256ssd stuff heavy usage simple',
 'new model hp deal great indian festival issues warranty windows office original laptop boots ssd laptop delicate purposes office work movies youtube music perfect choice normal hdd laptops slower mechanical functionality.i review days usage',
 'model waste money much expectation things good one light weight other battery life',
 'laptop good battery life average hours light laptop premium processing good ideal casual use problem web browsing movies documents good one course value money',
 'lots positive negative reviews one battery good screen display good easy small size lightweight ssd satisfied',
 'sysytem little bit slow reboot tine time.body quality soft firm dell.one care battery life good sound good.but price product ok',
 'good product slow ram gb slot lots issues slowness hp technician look',
 'nice laptop.all functions available ms office lifetime validity sound quality superb hp dell laptop.simple start home use normal routine work best laptop',
 'microsoft office excel word powerpoint)is lifetime valid office first- microsoft outlook login only trial version.screen average speed excellent boots seconds light weight highlight',
 'good product thin lightweight battery backup good review product more weeks',
 'awesome deal amazon great indian sale laptop compact awesome performance price point inclusion ssd attraction boot time secs',
 'ms office lifetime available orginal i.e full security)portable light weight average screen quality',
 'light weight friendly laptop good memory space professionals basic applications such ms office system college friendly smooth keyboard video quality good',
 'slow regular student work t huge applications hp service bad displays site warranty service center don t product',
 'laptop slow bad laptop life time limit money',
 'laptop multiple programs product perfect',
 'seller doest invoice packet authenticity product',
 'excellent entry level notebook ssd faster sata build okay',
 'charger laptop helpline complain service available website hp response',
 'pros light weight good battery life gb ram tb hddcons processor speed slower expected.remark value money',
 'system slow lot time boot.this basic usage laptop worth money',
 'product mso hp online session same thing product mso installed lot issues service team dell better service',
 'vert worst service hp replacement bad bad bad hp qty least bother frm retailpc slow',
 'light weight stylish good battery life issue little bit slow',
 'new hp laptop slow applications slow years ram gb application word slow',
 'gb ram ssd hd results laptop fast light weight easy convenient frequent travellers speakers good price range.value money 28k sbi card discount',
 'light weight laptop routine use windows ms office',
 'light weight portable laptopsince ssd technology system lag multiple applications5 hrs battery life multi processing',
 'premium handy light weight screen fabulous mouse pad soft touch love machine opt office h&s extra laptop',
 'product good value money reasonable price.however vendor didn t ms office home edition license key vendor same earliest',
 'days laptop local repair laptop amazon product igot defects photo laptop',
 'happy performance laptop lightweight good speed worth money',
 'angles worst.option nvme ssd good like.overall performance good better price range',
 'charger system slow battery backupnot technician money laptop',
 'price good real lightweight decent battery screen good option option basic computing browsing needs',
 'good laptop gb ram ssd fast smoother hd display battery backup upto hrs good students gaming',
 'battery goodsystem many times',
 'good buy requirement',
 'good pieceram',
 'screen good laptop hr talk time becouse light weight',
 ...]

To create term dictionary, we must have string tokenised

In [63]:
tokenised_corpus=[]
for corp in corpus:
    
    tokenised_corpus.append([token for token in corp.split(" ")])
tokenised_corpus
Out[63]:
[['sound', 'laptop', 'necessary', 'drives.please', 'solution', 'item'],
 ['amazon',
  'wrong',
  'pictures',
  'keyboard',
  'silver',
  'colorif',
  'review',
  'laptop',
  'useful'],
 ['customers',
  'items',
  'sbi',
  'card',
  'pleasr',
  'statement',
  'details',
  'prouduct',
  'interest',
  'bank',
  'additional',
  'interest',
  'month',
  'month',
  'amazon',
  'matter',
  'customers',
  'sbi',
  'cards',
  'payment'],
 ['laptop',
  'month',
  'use.pros:-',
  'overall',
  'looks',
  'interesting.-',
  'screen',
  'size',
  'display',
  'usb',
  'ports',
  'hdmi',
  'rj45',
  'connector',
  'usb',
  'jack',
  'card',
  'slot',
  'cd',
  'rom.-',
  'intel',
  'i3',
  '7th',
  'gen',
  'laptop',
  'applications',
  'browsing',
  'experience',
  'good.cons:-',
  'minute',
  'laptop',
  'able',
  'hang.-',
  'full',
  'size',
  'keyboard',
  'numeric',
  'buttons',
  'right',
  'present.overall',
  'verdict',
  'decent',
  'laptop',
  'price'],
 ['message',
  'unsatisfactory',
  'product',
  'i3',
  '7th',
  'gen',
  'gb',
  'ram',
  'slower',
  'celeron',
  'processor',
  'other',
  'laptop',
  'infact',
  'simple',
  'basic',
  'task',
  'mail',
  'laptop',
  'gaming',
  'slow',
  '%',
  'memory',
  '%',
  'disk',
  'usage',
  'show',
  'time',
  'open',
  'task',
  'manager.i',
  'hp',
  'messages',
  'hp',
  'other',
  'reviews',
  'promising',
  'hp',
  'customer',
  'care',
  'laptop',
  'sad',
  'thing',
  'one',
  'mail.so',
  'sick',
  'hp',
  'service'],
 ['laptop',
  'day',
  'ago.it',
  'amazon',
  'laptop',
  'lifetime',
  'validity',
  'ms',
  'office.but',
  'not.we',
  'year.feeling',
  'disappointed',
  'amazon',
  'wrong',
  'feature'],
 ['purchase',
  'laptop',
  'use',
  'last',
  'days',
  'performance',
  'wise',
  'slow',
  'comfortable',
  'everyday',
  'use.suggestions',
  'better',
  'laptop',
  'same',
  'price'],
 ['bloody', 'product', 'customer', 'support'],
 ['display', 'quality', 'speed', 'bad'],
 ['products',
  'original',
  'hp?find',
  'photos',
  'same.i',
  'i5',
  'i3',
  'different'],
 ['first',
  'boot',
  'hrs',
  'waste',
  'money',
  'tension',
  'trashpro',
  'advice',
  'goto',
  'showroom',
  'lappy',
  'dn',
  'online',
  'marketing',
  'crap'],
 ['brand', 'mine', 'system', 'hours', 'delivery', 'laptop'],
 ['performance',
  'about.i',
  'more',
  'time',
  'installing',
  'updates',
  'laptop.it',
  'slow',
  'months',
  'hp',
  'customer',
  'care',
  'software',
  'recovery.i',
  'steps',
  'product',
  'warranty',
  'online',
  'classes',
  'basic',
  'browsing',
  'ie',
  'gaming',
  'other',
  'heavy',
  'stuff.i',
  'service',
  'visit',
  'software',
  'issues',
  'service',
  'visit',
  'arranged.i',
  'use',
  'guarantee',
  'windows',
  'version',
  'remote',
  'place',
  'nearby',
  'service',
  'centre',
  'option',
  'other',
  'item',
  'kind',
  'support',
  'hp.should',
  'eye',
  'opener',
  'planning',
  'hp',
  'laptop.after',
  'month',
  'laptop',
  'indicator',
  'much',
  'pom',
  'pom',
  'ed',
  'hp',
  'advise',
  'crapupdate',
  'hp',
  'defect',
  'hard',
  'disk',
  'service',
  'engineer',
  'hard',
  'disk',
  'usb',
  'media',
  'hp',
  'rs',
  'service',
  'engineer',
  'windows',
  'cloud',
  'recovery',
  'hp',
  'free',
  'replacement',
  'recovery',
  'media',
  'keypad',
  'lappy',
  'service',
  'centre',
  'whole',
  'process'],
 ['pros1',
  'sound',
  'quality',
  'good2',
  'picture',
  'quality',
  'satisfactory3',
  'camera',
  'average',
  'price',
  'range4',
  'keypad',
  'comfortable5',
  'life',
  'time',
  'validity',
  'windows',
  'home',
  'mso',
  'student.cons1',
  'anti',
  'virus',
  'macafee',
  'trial',
  'version',
  'days2',
  'opening',
  'applications',
  'slow',
  'better',
  'i5.3',
  'battery',
  'removable.notevalue',
  'money',
  'laptop',
  'performance'],
 ['good',
  'product.awesome',
  'battery',
  'backupworth',
  'moneysimple',
  'drawback',
  'antiglare',
  'display'],
 ['folks',
  'product',
  'review',
  'other',
  'product',
  'responsibility',
  'review.this',
  'laptop',
  'weeks',
  'observations',
  'pros',
  'light',
  'weight.single',
  'coat',
  'appearance',
  'nice.keyboard',
  'robustsound',
  'quality',
  'good.cons',
  'speed',
  'product',
  'speed',
  'great.touch',
  'pad',
  'smooth.laptop',
  'hot.overall',
  'games',
  'budget',
  'less',
  'k.',
  'product',
  'thought.thanks',
  'hope',
  'helpful'],
 ['worse',
  'purchase',
  'amazon',
  'amazon',
  'hp',
  'low',
  'quality',
  'product',
  'laptop',
  'display',
  'month',
  'physical',
  'damage',
  'warranty',
  'manufacturing',
  'defect',
  'low',
  'quality',
  'parts',
  'hp',
  'customer',
  'such',
  'hp',
  'products'],
 ['dell',
  'laptop',
  'hp',
  'dell',
  'better',
  'major',
  'advantages',
  'laptopms',
  'officegreat',
  'speakerthe',
  'display',
  'low',
  'quality',
  'system',
  'slowi',
  'older',
  'configuration',
  'lot',
  'better'],
 ['nice', 'sound', 'quality', 'nice', 'backup', 'value', 'money'],
 ['laptop',
  'slow',
  'msi',
  'laptop',
  'model',
  'better',
  'actual',
  'laptop',
  'slow',
  'sure',
  'original',
  'ecommerce',
  'side',
  'online',
  'one',
  'one',
  'bad',
  'new',
  'tab',
  'sad'],
 ['value', 'money'],
 ['system',
  'much',
  'time',
  'mins',
  'minimal',
  'softwares',
  'restart',
  'system',
  'more',
  'hr',
  'updates',
  'background.sql',
  'server',
  'only',
  'heavy',
  'weight',
  'software',
  'more',
  'gb',
  'hard',
  'disk',
  'free',
  'i3',
  '7th',
  'gen',
  'processor',
  'same',
  'issue'],
 ['awesome', 'laptop', 'much', 'negative', 'reviews'],
 ['disappointed',
  'performance',
  'laptop',
  'first',
  'day',
  'lots',
  'issue',
  'task',
  'minimum',
  'double',
  'time',
  'few',
  'seconds',
  'm',
  'laptop',
  'regret',
  'wise',
  'awesome',
  'battery',
  'life',
  'average',
  'only',
  'major',
  'problem',
  'laptop',
  'command',
  'laptop',
  'files',
  'laptop',
  'amazon',
  'product',
  'original'],
 ['worst',
  'product',
  'hp',
  'performance',
  'slow',
  'applications',
  'defective',
  'speaker',
  'head',
  'phone',
  'warranty',
  'year'],
 ['value',
  'money',
  'good',
  'quality',
  'normal',
  'battery',
  'life',
  'hours',
  'nutshell',
  'laptop',
  'good',
  'price',
  'range'],
 ['product',
  'packing',
  'great',
  'laptop',
  'gud.pros',
  'anti',
  'glare',
  'display',
  'great.keyboard',
  'gud',
  '.camera',
  'great.sound',
  'loud',
  'clear.laptop',
  'lightweight.cons',
  'bit',
  'upgrade',
  'ssd',
  'drive',
  'gamers',
  'ram',
  'nd',
  'graphics',
  'upgraded.good',
  'medium',
  'gaming.overall',
  'great',
  'laptop',
  'budget',
  '31k'],
 ['single', 'word-', 'worth', 'slow'],
 ['product',
  '9th',
  'may',
  'app',
  'slow',
  'much',
  'time',
  'dell',
  'lenovo',
  'kind',
  'product',
  'hp'],
 ['product',
  'month',
  'complaint',
  'slow',
  'performance',
  'remote',
  'support',
  'hp',
  'desk',
  'service',
  'center',
  'improvement',
  'home',
  'assistance',
  'arrangements',
  'hp',
  'revert',
  'such',
  'faulty',
  'product'],
 ['slow', 'laptop', 'bad', 'purchase', 'piece', 'junk'],
 ['quick',
  'delivery',
  'amazon.have',
  'laptop',
  'single',
  'issue',
  'date.not',
  'sure',
  'performance',
  'gaming',
  'gaming.battery',
  'life',
  'good',
  'power',
  'saver',
  'mode',
  'heavy',
  'usage.easy',
  'much',
  'compact',
  'well.overall',
  'performance',
  'good',
  'heavy',
  'usage',
  'heavy',
  'usage',
  'programming',
  'gaming.my',
  'opinion',
  'reasonable',
  'good',
  'performance',
  'light',
  'weight',
  'value',
  'money'],
 ['good',
  'laptop',
  'beautiful',
  'colour',
  'design',
  'windows',
  'needs',
  'upgrade',
  'updation',
  'satisfied',
  'laptop'],
 ['overall',
  'laptop',
  'gooda',
  'colour',
  'common.(standard)display',
  'superb',
  'depend',
  'quality',
  'see.mcafee',
  'antivirus',
  'day',
  'trial.performance',
  'excellentstorage-',
  'plenty',
  'enoughgood',
  'programming'],
 ['expectations', 'quality', 'poor', 'specification', 'hp', 'outlet'],
 ['review',
  'slowwwww',
  'worst',
  'product',
  'hp',
  'response',
  'customer',
  'care',
  'amazon.go',
  'dell',
  'lenovo',
  'other',
  'brand',
  'hp',
  'amazon',
  'service.laptop',
  'krk',
  'jao',
  'better',
  'laptop',
  'same',
  'price'],
 ['good', 'product', 'requirement'],
 ['first',
  'place',
  'laptop',
  'amazon',
  'upfront',
  't',
  'need',
  'same',
  'packaging',
  'amazon',
  'amazon',
  'high',
  'price',
  'products',
  'customers',
  'images',
  'text',
  'way',
  't',
  'need',
  'don',
  't',
  'performance',
  'expectations.poor',
  'amazon',
  'policy',
  'own',
  'risk',
  'final',
  'sale',
  'way',
  'it.when',
  'load',
  'upload',
  'first',
  'software',
  'youtube',
  'videos',
  'video',
  'performance',
  'laptop',
  'stuck',
  'mins',
  'video',
  'full',
  'screen',
  'mode',
  'while',
  'several',
  'performance',
  'issues',
  'laptop',
  'don',
  't',
  'don',
  't',
  'don',
  't',
  'don',
  't',
  'buy',
  'this.when',
  'mb',
  'file',
  'zip',
  'memory',
  'memory',
  'utilization',
  '%',
  'application',
  'dam',
  'comments',
  '27-jul-2019',
  'technician',
  'visit',
  'tech',
  'guy',
  'issue',
  'amazon',
  'replacement',
  'replacement',
  'worst',
  'pics',
  'review'],
 ['laptop', 'duplicate', 'processor', 'slow', 'better', 'laptop', 'market'],
 ['product',
  'activation',
  'key',
  'missingvery',
  "slowi'm",
  'pissed',
  'product',
  'god',
  'sake'],
 ['bad', 'system', 'slow'],
 ['weeks',
  'review.it',
  'nice',
  'useful',
  'product',
  'daily',
  'use',
  'battery',
  'life',
  'good',
  'screen',
  'quality',
  'awsome',
  'camera',
  'quality',
  'little',
  'bit',
  'okey'],
 ['product', 'quality', 'good'],
 ['process',
  'slow.ms',
  'office',
  'antivirus',
  'trial',
  'period',
  'drive',
  'partition',
  'c',
  'drive',
  'battery',
  'backup',
  'time',
  'hours',
  'only.wifi',
  'jio',
  'g',
  'data',
  'usb',
  'port',
  'usb',
  'port',
  'type',
  'c',
  'type',
  'usb',
  'port',
  'letters',
  'thin',
  'difficult',
  'low',
  'light(hp',
  'keyboard',
  'light).hp',
  'heat',
  'vents',
  'display',
  'area.when',
  'long',
  'time',
  'bottom',
  'area',
  'display',
  'screen',
  'screen',
  'laptop',
  'heavy',
  'nice',
  'laptop'],
 ['kaam', 'heating', 'issue', 'much', 'problem', 'normal', 'daily', 'use'],
 ['order',
  'hp',
  'laptop',
  'message',
  'installation',
  'came2-',
  'buy',
  'replacement',
  'day',
  'performance3-',
  'voice',
  'quality',
  'picture',
  'quality',
  'replacement',
  'productbut',
  'cus',
  'same',
  'default',
  'other',
  'product',
  'regular',
  'customer',
  'many',
  'year"s'],
 ['gadget',
  'guys',
  'short',
  'review',
  'above',
  'model',
  'lappy',
  'today.design',
  'goodweight',
  'light',
  'hpspecs',
  'nice',
  'config',
  'decent',
  'budgetfhd',
  'screen',
  'new',
  'addition',
  'good',
  'resolution',
  'anti',
  '-',
  'glarebattery',
  'interesting',
  'aspect',
  'lappy',
  'good',
  'backup',
  'satisfiedi3',
  'gb',
  'ddr4',
  'combo',
  'more',
  'initial',
  'booting',
  'updates',
  'lappy',
  'slow',
  'time',
  'setup',
  'lappy',
  'good',
  'lappy',
  'affordable',
  'price',
  'package',
  '26.5k',
  'offer',
  'credit',
  'card',
  'offers'],
 ['product',
  'amazon',
  'satisfied',
  'product',
  'range',
  '31k',
  'speaker',
  'quality',
  'poor',
  'screen',
  'quality',
  'mark',
  'good',
  'side.but',
  'thankful',
  'bajaj',
  'finserv',
  'financial',
  'need',
  'thnx',
  'bajaj',
  'amazon'],
 ['modest',
  'pricing',
  'reflective',
  'responsiveness',
  'system',
  'job',
  'entry',
  'level',
  'laptop',
  'basic',
  'browsing',
  'reading',
  'secondary',
  'laptop',
  'use',
  'children.biggest',
  'pros',
  'screen',
  'size',
  'extended',
  'keyboard',
  'dedicated',
  'number',
  'pad.biggest',
  'cons',
  'slowness',
  'laptop',
  'absence',
  'backlit',
  'keyboard',
  'latter',
  'purchase'],
 ['one',
  'non',
  'laptop',
  'application',
  'down.microsoft',
  'office',
  'slow',
  'starts',
  'mins',
  'amazon',
  'it.i',
  'wish',
  'amazon.this',
  'worst',
  'experience',
  'amazon',
  'laptop',
  'money'],
 ['slow', 'laptop', 'slower', 'year', 'i3', 'laptop', 'same', 'price'],
 ['worst',
  'product',
  'pathetic',
  'laptop',
  'hangs',
  'day',
  'times',
  'waste',
  'money',
  'seller',
  'willing',
  'return',
  'period',
  'kind',
  'sellers',
  'reputation',
  'market'],
 ['junk',
  'product',
  'single',
  'star',
  'other',
  'choice',
  'bad',
  'mins',
  'app',
  'own',
  'time',
  'i3',
  'gb',
  'ram',
  'worst',
  'product',
  '19th',
  'century',
  'computer',
  'good',
  'junk',
  'product',
  'sure',
  'hp',
  'product',
  'quality',
  'correct',
  'spareparts',
  'hp',
  'model',
  'scrap',
  'items',
  'hp',
  'employee',
  'kind',
  'worst',
  'experience',
  'hp',
  'product',
  'hp',
  'kind',
  'product',
  'hp',
  'share',
  'value',
  'product'],
 ['disappointed', 'product', 'hp', 'job', 'hp', 'local', 'product', 'product'],
 ['bad',
  'product',
  'one',
  'waste',
  'money',
  'slow',
  'performance',
  'gb',
  'mobile',
  'phone',
  'battery',
  'hour',
  'money',
  'item',
  'seller',
  'customer',
  'care',
  'return',
  'policy',
  'product'],
 ['decent',
  'product',
  'price',
  'range',
  'lighter',
  'windows',
  'value',
  'money',
  'buttons',
  'amazon',
  'technician',
  'verifying',
  'new',
  'laptop'],
 ['slow', 'years', 'old', 'laptop', 'better'],
 ['product',
  'today',
  'ms',
  'office',
  'ms',
  'office',
  'product',
  'key',
  'ms',
  'office',
  'key',
  'package',
  'document',
  'ms',
  'office.after',
  'months',
  'mouse',
  'windows',
  'obtion',
  'unable',
  'bluetooth',
  'mouse',
  'ok',
  'other',
  'issue',
  'system',
  'superb'],
 ['product',
  'student',
  'best',
  'entry',
  'level',
  'laptop',
  'important',
  'functions',
  'student',
  'buy',
  'itit',
  'pre',
  'ms',
  'officewindows',
  'money'],
 ['specifications',
  'laptop',
  'lifetime',
  'warranty',
  'ms',
  'office',
  'warranty',
  'week',
  'query'],
 ['good',
  'laptop',
  'home',
  'use',
  'ms',
  'office',
  'pre',
  'loaded',
  'smooth',
  'bit',
  'slower',
  'expectation',
  'core',
  'i3',
  '7th',
  'gen',
  'good',
  'value',
  'pricepoint'],
 ['bad',
  'experience',
  'worst',
  'laptop',
  'problem',
  'first',
  'day',
  'personal',
  'use',
  'laptop',
  'games',
  'simple',
  'task',
  'thing',
  'i3',
  'processor',
  'becz',
  'i3',
  'seller',
  'fraud',
  'laptop',
  'i3',
  'sticker',
  'tha',
  'laptop',
  'garbage',
  'fill.worst',
  'performance',
  'worst',
  'laptop',
  'go',
  'dell',
  'laptop',
  'good'],
 ['ekdam', 'ghatiya', 'h', 'act', 'old', 'laptop', 'performance', 'slow'],
 ['laptop',
  'slow',
  'lot',
  'time',
  'battery',
  'backup',
  'bad',
  'warranty',
  'card',
  'laptop',
  'poor',
  'display',
  'msoffice',
  'valid',
  'month'],
 ['system',
  'windows',
  'office',
  'suite',
  'booting',
  'speed',
  'slow',
  'system',
  'better',
  'performance',
  'wich'],
 ['screen',
  'border',
  'black',
  'rest',
  'parts',
  'silver',
  'u',
  'dark',
  'area',
  'coz',
  'light',
  'keybords',
  'keys'],
 ['range',
  'good',
  'laptop',
  'single',
  'drive',
  'partition',
  'c',
  'drive',
  'lappy.secondly',
  'issue',
  'black',
  'screen',
  'error',
  'time',
  'thanks',
  'budget'],
 ['laptop',
  'hp',
  'months',
  'laptop:1',
  'minutes',
  'disk',
  'usage',
  '%',
  '%',
  'data',
  'c',
  'drive.3',
  'google',
  'chrome',
  'edge',
  'browsers',
  'hp',
  'customer',
  'i3',
  'good',
  'windows',
  'better',
  'i5',
  'os',
  'windows'],
 ['best', 'quality'],
 ['windows', 'least', 'gb', 'laptop', 'slow', 'regret'],
 ['slow',
  'machine',
  'ms',
  'word',
  'laptop',
  'slow.on',
  'boot',
  'disk',
  'utilization',
  '%',
  'processor',
  'utilization',
  '%',
  'mark',
  'performance',
  'consistent',
  'specifications'],
 ['provision',
  'star',
  'available',
  'laptop',
  'slow',
  'g',
  'network',
  'time',
  'link'],
 ['laptop',
  'good',
  'reasonable',
  'price',
  'config',
  'battery',
  'little',
  'description',
  'lagging',
  'issues',
  'startup',
  'few',
  'changes',
  'fine',
  'keyboard',
  'soft',
  'easy',
  'num',
  'pad',
  'handy',
  'numbers',
  'better',
  'keys',
  'different',
  'colour.overall',
  'good'],
 ['laptop',
  'day',
  'laptop',
  'complaint',
  'period',
  'many',
  'attempts',
  'unable',
  'amazon',
  'customer',
  'service'],
 ['battery',
  'good',
  'bt',
  'sound',
  'quality',
  'average',
  'average',
  'processor',
  'disappointed',
  'product'],
 ['bad',
  'experience',
  'amazon',
  'packing',
  'laptop',
  'bad',
  'packing',
  'surprise',
  'laptop',
  'name',
  'jitu',
  'pawar',
  'password',
  'profile',
  'above',
  'amzon'],
 ['best',
  'product',
  'price',
  'range.1',
  'weight',
  'decent2',
  'gaming',
  'performance',
  'high.3',
  'product',
  'battery',
  'life',
  'times',
  'full',
  'charge',
  'hours',
  'backup.4',
  'last',
  'days',
  'hanging',
  'issues',
  'also.overall',
  'laptop',
  'games',
  'best',
  'product',
  'price'],
 ['inspite',
  'gb',
  'ram',
  'system',
  'point',
  'laptop',
  'minutes',
  'basic',
  'application',
  'ms',
  'excel',
  'ms',
  'word',
  'browser',
  'chrome',
  'time',
  'lag',
  'sad',
  '30k',
  'trash'],
 ['excellent'],
 ['slow'],
 ['sir',
  'madamas',
  'requirements',
  'ms',
  'office',
  'bag',
  'factory',
  'immediate',
  'call',
  'laptop',
  'screen',
  'quality',
  'good'],
 ['good'],
 ['dear', 'sir', 'madam', 'hp', 'laptop', 'touch', 'pad', 'same', 'asap'],
 ['worst',
  'laptop',
  'world',
  'issues:1',
  'dead',
  'slow2',
  'hang3',
  'battery',
  'backup',
  'mark.4',
  'trouble',
  'admin',
  'access',
  'waste',
  'pure',
  'money',
  'product',
  'worth',
  'half',
  'different'],
 ['battery',
  'life',
  'good',
  'problem',
  'silver',
  'white',
  'body',
  'colour',
  'scratches',
  'dirty',
  'black',
  'colour',
  'body',
  'laptop'],
 ['worst',
  'product',
  'amazon',
  'worst',
  'laptop',
  'life',
  'product',
  'mother',
  'months',
  'beginning',
  'product',
  'point',
  'time',
  'unable',
  'atleast',
  'product',
  'product',
  'site',
  'warranty',
  'hp',
  'service',
  'team',
  'reluctant',
  'onsite',
  'service',
  'product.hp',
  '-'],
 ['laptop',
  'primitive',
  'configuration',
  'laptop',
  'market',
  'good',
  'things',
  'time',
  'sleep',
  'bad',
  'things',
  'slow',
  'more',
  'tabs',
  'browser',
  'google',
  'chrome',
  'likely',
  'chance',
  'laptop',
  'freezing',
  'more',
  'worse',
  'network',
  'adapter',
  'ghz',
  'band',
  'gb',
  'ram',
  'inadequate'],
 ['cheap',
  'showrooms',
  'brand',
  'new',
  'lappy',
  'good',
  'packaging',
  'pre',
  'ms',
  'office',
  'i3',
  '7th',
  'generation',
  'processor',
  'lags',
  'normal',
  'tasks',
  'lot',
  'time',
  'booting',
  'gaming'],
 ['worst',
  'ever',
  'product',
  'hp',
  'trust',
  'hp',
  'i.m',
  'hp',
  'products',
  'many',
  'years',
  'hp',
  'dealers',
  'atleast',
  'laptop',
  'warranty',
  'period'],
 ['product', 'good', 'bad', 'hang', 'regular', 'basis'],
 ['laptop',
  'poor',
  'finishing',
  'gaps',
  'right',
  'side',
  'keyboard',
  'panel',
  'cd',
  'disc',
  'scratches'],
 ['worst', 'performance', 'price', 'range', 'slow', 'sound'],
 ['bad',
  'experience',
  'product',
  'months',
  'spot',
  'screen',
  'service',
  'center',
  'screen',
  'damage',
  'warranty',
  'suggestion',
  'laptop',
  'other',
  'expensive',
  'products',
  'amazon'],
 ['speed',
  'machine',
  'slowest',
  'good',
  'basic',
  'school',
  'work',
  'hp',
  'such',
  'bad',
  'product',
  'reason',
  'low',
  'price',
  'price',
  '%'],
 ['useless',
  'productvery',
  'slow',
  'processingit',
  'better',
  'product',
  'showroom',
  'amazon'],
 ['disappointed',
  'performance',
  'quilty',
  'slow',
  'system',
  'slow',
  'other',
  'systems',
  'defective'],
 ['laptop', 'slow', 'dell', 'friend'],
 ['laptop',
  'great',
  'i3',
  'usage',
  'everyday',
  'surfing',
  'movies',
  'ms',
  'officenot',
  'gamingcame',
  'life',
  'time',
  'valid',
  'os',
  'ms',
  'office'],
 ['confusionlaptop',
  'power',
  'oni',
  'opt',
  'return',
  'hp',
  'answerat',
  'last',
  'amazon',
  'for3hrsthen',
  'people',
  'other',
  'wise',
  'bad',
  'impressionsat',
  'least',
  'hints'],
 ['hole',
  'laptop',
  'colour',
  'good',
  'keypad',
  'silver',
  'colour',
  'good',
  'light',
  'gm',
  'ram',
  'good',
  'hang',
  'problem',
  'extra',
  'gb',
  'ram',
  'performance',
  'good',
  'gm',
  'ram',
  'laptop',
  'gb',
  'ram',
  'laptop',
  'buy',
  'bilvery',
  'product',
  'bad',
  'amazon',
  'divery',
  'agent',
  'call',
  'time',
  'rply',
  'amount',
  'choice',
  'frnd'],
 ['warranty',
  'laptop',
  'laptop',
  'hp',
  'service',
  'center',
  'laptop',
  'serial',
  'invoice'],
 ['processor', 'slow', 'keypad', 'key', 'laptop'],
 ['nice'],
 ['patheticamazon',
  'support',
  'case',
  'details',
  'hpmy',
  'laptop',
  'useless',
  'less',
  'thosepathetic'],
 ['slow', 'more', 'minutes', 'minutes', 'windows'],
 ['processing',
  'speed',
  'slow',
  'basic',
  'apps',
  'office',
  'web',
  'browsers',
  'benefits',
  'genuine',
  'windows'],
 ['device', 'faulty', 'month', 'device'],
 ['defective', 'product', 'sellers'],
 ['time',
  'worst',
  'laptop',
  'dell',
  'i3',
  'nd',
  'gen',
  'gb',
  'ram',
  'gb',
  'harddisk',
  'old',
  'laptop',
  'better',
  'laptop'],
 ['worst',
  'laptop',
  'such',
  'useless',
  'device',
  'life',
  'slower',
  'nursery',
  'faster',
  'device'],
 ['worse', 'products', 'dnt', 'feature', 'product', 'possible'],
 ['budget',
  '32k',
  'good',
  'general',
  'purpose',
  'excellent',
  'product',
  'many',
  'slow',
  'first',
  'time',
  'lot',
  'time',
  'great',
  'no',
  'updates',
  'updates',
  'performance',
  'great'],
 ['worst',
  'laptop',
  'ever.service',
  'amazon',
  'good',
  'product',
  'good',
  'offline',
  'product',
  'amazon',
  'bcz',
  'smallr',
  'hp',
  'genuine',
  'laptop.heating',
  'issue',
  'right',
  'side',
  'touchpad',
  'slow',
  'other',
  'i3',
  'products'],
 ['month', 'laptop', 'happy', 'performance', 'way'],
 ['pros',
  'good',
  'wise.display',
  'nice',
  'other',
  'laptops',
  'price',
  'range.cons',
  'hangs',
  'multi',
  'tab',
  'reliable',
  'gaming',
  'office',
  'software',
  'word',
  'gb',
  'ram',
  'model'],
 ['one', 'laptop', 'unexpected', 'aware', 'laptop'],
 ['super', 'ms', 'office'],
 ['product',
  'good',
  'warranty',
  'card',
  'big',
  'fault',
  'amazon',
  'side',
  'acceptable',
  'amazon',
  'fraud',
  'customer',
  'many',
  'times',
  'customer',
  'services',
  'number'],
 ['product',
  'good',
  'warenty',
  'card',
  'windows',
  'plz',
  'information',
  'product',
  'dear',
  'amazon',
  'issue',
  'belivable',
  'customers'],
 ['good',
  'looking',
  'laptop',
  'full',
  'hd',
  'screen',
  'good',
  'sound',
  'quality'],
 ['worthless', 'amazon'],
 ['nyc', 'superb', 'budjet', 'dizz', 'product', 'more', 'data'],
 ['genuine',
  'happy',
  'product',
  'gb',
  'ram',
  'ok',
  'gb',
  'robust',
  'experience',
  'overall',
  'good',
  'laptop'],
 ['lappi',
  'slow',
  'much',
  'time',
  'chrome',
  'other',
  'app',
  'products',
  'amazon',
  'none',
  'happy',
  'products',
  'amazon',
  'future'],
 ['good',
  'laptop',
  'day',
  'tasks',
  'average',
  'laptop',
  'price',
  '30490.there',
  'information',
  'available',
  'type',
  'ssd'],
 ['price', 'worth', 'battery'],
 ['slow', 'stuffing', 'many', 'times'],
 ['amazing',
  'product',
  'extra',
  'gb',
  'ram',
  'best',
  'use',
  'additional',
  'ram',
  'laptop',
  'slow',
  'extra',
  'gb',
  'nehru',
  'place',
  'kingston'],
 ['laptop', 'ms', 'office', 'ms', 'office', 'life', 'time', 'windows'],
 ['hp',
  'product',
  'good',
  'support',
  'services',
  'poor',
  'hp',
  'product',
  'dell',
  'items',
  'better',
  'hp',
  'items'],
 ['response', 'time', 'slow', 'battery'],
 ['product',
  'quality',
  'issues',
  'fragile',
  'waste',
  'money',
  'service',
  'poor',
  'product'],
 ['minutes', 'dis'],
 ['worth', 'penny'],
 ['laptop', 'laptop', 'slow', 'hp', 'support', 'good', 'solution', 'problem'],
 ['battery',
  'sound',
  'build',
  'quality',
  'good',
  'i3',
  'processor',
  'slow',
  'laptop',
  'simple',
  'usesage',
  'i5'],
 ['system', 'slow'],
 ['good;battery',
  'backup',
  'fast',
  'charging',
  'nice',
  'sleek',
  'looking',
  'games',
  'application'],
 ['worst',
  'product',
  'multiple',
  'windows',
  'lot',
  'slow',
  'fancy',
  'peice',
  'attractive',
  'worth'],
 ['value', 'money'],
 ['good', 'product'],
 ['slow'],
 ['new', 'laptop', 'longer', 'time', 'app', 'performance'],
 ['laptop',
  'durability',
  'battery',
  'life',
  'good',
  'bit',
  'slower',
  'side',
  'mins',
  'login',
  'windows'],
 ['half',
  'months',
  'battery',
  'today',
  '%',
  'battery',
  'ac',
  'adaptor',
  'swith',
  'answer',
  'problem'],
 ['material',
  'body',
  'making',
  'bad',
  'glass',
  'breaking',
  'type',
  'solid',
  'material.very',
  'bad',
  'material'],
 ['good', 'otw', 'unsatisfactory', 'product', 'speed', 'slow'],
 ['slow', 'laptop'],
 ['last',
  'month',
  'small',
  'defect',
  'right',
  'side',
  'panel',
  'screen',
  'laptop',
  'slow',
  'day',
  'much',
  'use'],
 ['slowest', 'laptop', 'world', 'dnt', 'value', 'money', "don't"],
 ['good',
  'complain',
  'extra',
  'rs',
  '28th',
  'prime',
  'customer',
  '29th',
  'rs',
  'less',
  'due',
  'prime',
  'customer'],
 ['useless'],
 ['system',
  'slow',
  'ram',
  'low',
  'people',
  'products',
  'laptop',
  'amazon',
  'product',
  'stores'],
 ['problem', 'operation'],
 ['veryyy'],
 ['good',
  'bit',
  'due',
  'internet',
  'speed',
  'issues',
  'ms',
  'office',
  'version',
  'free',
  'amazon',
  'batter',
  'inbuilt',
  'sound',
  'quality',
  'good'],
 ['keypad', 'bad'],
 ['dumbest',
  'decision',
  've',
  'slowest',
  'laptop',
  'clean',
  'format',
  'doesn',
  't',
  'work',
  't',
  'money'],
 ['worst', 'lapi', 'slow'],
 ['slow',
  'lot',
  'time',
  'kid',
  'middle',
  'range',
  'laptop',
  'useless',
  'user',
  'experience',
  'frustrating',
  'waste',
  'money'],
 ['pros',
  'light',
  'weight',
  'slim',
  'design',
  'good',
  'battery',
  'life',
  'charging',
  'extra',
  'features',
  'cons',
  'hell',
  'lots',
  'time',
  'start',
  'booting',
  'system',
  'slow'],
 ['product', 'last', 'month', 'one', 'screen', 'bill', 'product'],
 ['slow', 'ram', 'upgrade'],
 ['slow', 'better', 'regular', 'use', 'performance', 'less', 'gb', 'ram'],
 ['great', 'product', 'quality', 'hp'],
 ['item', 'happy', 'performance', 'quality'],
 ['graphics',
  'suitable',
  'slow',
  'start.after',
  'black',
  'screen',
  'problem.also',
  'down.warranty',
  'hp',
  'website'],
 ['laptop',
  'disappointing',
  'battery',
  'backup',
  'good',
  'display',
  'quality',
  'good',
  'ssd',
  'ram',
  'smooth',
  'work'],
 ['product',
  'issue',
  'keypad',
  'complain',
  'one',
  'issue',
  'bad',
  'product',
  'service',
  'hp'],
 ['worst',
  'product',
  'third',
  'grade',
  'quality',
  'china',
  'online',
  'worth',
  'money'],
 ['good', 'school', 'office'],
 ['review',
  'battery',
  'life',
  'hours',
  'picture',
  'quality',
  'average',
  'processing',
  'speed',
  'average'],
 ['product',
  'worst',
  'product',
  'hp',
  'company',
  'laptop',
  'hp',
  'company',
  'amazon'],
 ['p1',
  'system',
  'most',
  'time',
  'hang',
  'hang',
  'hand',
  'window',
  'everytime'],
 ['waste', 'money', 'full', 'problem', 'much', 'time', 'vedio'],
 ['nice',
  'laptop',
  'smooth',
  'keyboard',
  'good',
  'gaming',
  'windows',
  'touch',
  'screen',
  'laptop',
  'performance',
  'excellent'],
 ['worth', 'product', 'slow', 'work'],
 ['verry',
  'slow',
  'screen',
  'quality',
  'bery',
  'wrist',
  'product',
  'old',
  'verry',
  'disappointed',
  'hp',
  'quality'],
 ['good', 'ms', 'office'],
 ['performance',
  'laptop',
  'poor',
  'more',
  'time',
  'apps',
  'files',
  'hang',
  'useful'],
 ['worst', 'product'],
 ['hp',
  'laptop',
  'friend',
  'nice',
  'product',
  'hp',
  'usual',
  'genuine',
  'service',
  'amazon',
  'amazon'],
 ['anti',
  'glare',
  'yesfor',
  'goodportability-',
  'pints',
  'budget',
  'best',
  'option'],
 ['mins'],
 ['battery', 'backup', 'good', 'speed', 'little', 'slow', 'nice'],
 [''],
 ['worst',
  'money',
  'laptop',
  'keyboard',
  'good',
  'typing',
  'visible',
  'words',
  'keys',
  'due',
  'silver',
  'colour',
  'keys',
  'board'],
 ['worst', 'laptop', 'market.very', 'slow', 'such', 'basic', 'things'],
 ['bug', 'windows', 'laptop', 'hibernate', 'battery'],
 ['slover', 'speed', 'costly', 'electronic', 'item', 'laptop'],
 ['ms', 'office', 'worst', 'experience', 'ur', 'regular', 'customer'],
 ['slow', 'processing'],
 ['slow',
  'laptop',
  'bcoz',
  'i3',
  'proc',
  'pc',
  'pentium',
  'core',
  'faster',
  'due',
  'settings',
  'other',
  'fact'],
 ['goodproduct'],
 ['product', 'bad'],
 ['battery', 'removeable', 'removable', 'system', 'good', 'slow', 'good'],
 ['good',
  'condition',
  'system',
  'times',
  'little',
  'slow',
  'other',
  'wise',
  'goodone',
  'product',
  'demerit',
  'drivers',
  'software',
  'cd',
  'box',
  'charger',
  'laptop',
  'box'],
 ['bad', 'product', 'hp', 'slow', 'process', 'bad', 'customer', 'service'],
 ['windows',
  'works',
  'slow',
  'gb',
  'configuration',
  'better',
  'gb',
  'wise',
  'ok',
  'fr',
  '30k',
  'range',
  'laptop',
  'gb',
  'os'],
 ['satisfied',
  'performance',
  'laptop',
  'battery',
  'backup',
  'cost',
  'this.also',
  '%',
  'cashback',
  'month',
  'warranty',
  'laptop',
  'vqr',
  'helpful',
  'button.happy',
  'purchasing'],
 ['months', 'usage', 'review', 'battery', 'price'],
 ['good',
  'product',
  'dealer',
  'hp',
  'service',
  'centerdear',
  'mr',
  'ms',
  'kumar',
  'status',
  'request',
  'closeddo',
  'email',
  'unmonitored',
  'automatic',
  'service',
  'contact',
  'information.please',
  'note',
  'materials',
  'notification',
  'materials',
  'reference',
  'number',
  'description',
  'hp',
  'g5',
  'notebook',
  'pcproduct',
  'number',
  'y0t72paserial',
  'number',
  'description',
  'portal',
  'case',
  'url',
  'n'],
 ['wonderful',
  'product',
  'price',
  'effective',
  'price',
  'delighted',
  'it.pros',
  'good',
  'battery',
  'life',
  'lightweight.-',
  'price',
  'durable',
  'excellent',
  'daily',
  'use.cons',
  'suitable',
  'high',
  'end',
  'gaming.-',
  'dos',
  'windows'],
 ['damage', 'laptop', 'disappointment'],
 ['personal',
  'use',
  'surprised',
  'lightweight',
  'battery',
  'backup',
  'good',
  'hours',
  'full',
  'charge',
  'tasks',
  'smooth',
  'lags',
  'lots',
  'windows',
  'amd',
  'quad',
  'core',
  'processor',
  'jalwa',
  'windows',
  'awesome',
  'price',
  'point',
  'supercool',
  'product',
  'next',
  'day',
  'prime',
  'subscriber',
  'others',
  'jackpot.note',
  'hp',
  'warranty',
  'past',
  'many',
  'people',
  'issue',
  'hp',
  'products',
  'amazon',
  'hp',
  'guys',
  'warranty',
  'product',
  'amazon'],
 ['laptop',
  'lines',
  'display',
  'laptop',
  'work',
  'days',
  'lot',
  'problems',
  'product',
  'return',
  'return',
  'warranty',
  'laptop',
  'hp',
  'company'],
 ['lightweight',
  'hp',
  'less',
  'worth',
  'deal.the',
  'only',
  'gripe',
  'offer',
  'period',
  'price',
  'offer',
  'period',
  'lower',
  'one',
  'fair',
  'amazon',
  'warranty',
  'month',
  'sep',
  'easy',
  'softwares'],
 ['fine',
  'bluetooth',
  'drivers',
  'hp',
  'downloads',
  'seller',
  'drivers',
  'realtek',
  'hp',
  'broadcom',
  'intel'],
 ['right', 'hand', 'side', 'vertical', 'line', 'screen'],
 ['amazon',
  'product',
  'years',
  'october',
  'product',
  'october',
  'vga',
  'usb',
  'hdmi',
  'ports',
  'rusted.moreover',
  'policies',
  'technician',
  'product',
  'complaint',
  'product',
  'photos',
  'hp',
  'website',
  'warranty',
  'june',
  'update',
  'basis',
  'response',
  'amazon'],
 ['demaretsthis',
  'product',
  'window',
  'driversit',
  'humble',
  'request',
  'amazon',
  'atleast',
  'provide',
  'network',
  'driverand',
  'product',
  'laptop',
  'actual',
  'details',
  'product',
  'differenti',
  'product',
  'voucher',
  'boxusb',
  'port',
  'side',
  'driver',
  'thatmeritsbettery',
  'life',
  'fair',
  'last',
  'hoursfunctioning',
  'smoothoverall',
  'good',
  'window'],
 ['daily',
  'work',
  'fine',
  'super',
  'm.s',
  'office',
  'abd',
  'other',
  'games',
  'non',
  'mini',
  'laptop',
  '18k',
  'price',
  'range',
  'laptop',
  'hp',
  'brand',
  'performance',
  'equal',
  'i3',
  'amd',
  'a6',
  'proffeser',
  'good',
  'amd',
  'a6',
  'equal',
  'i3',
  'order'],
 ['use',
  'year',
  'developer',
  'good',
  'basic',
  'programming',
  'framework.build',
  'quality',
  'use',
  'linux',
  'os(ubuntu',
  'linix',
  'mint',
  'os',
  'work',
  'better',
  'smoother',
  'windows'],
 ['bitter',
  'experience',
  'amazon',
  'cd',
  'dvd',
  'writer',
  'noise',
  'hard',
  'disk'],
 ['solution'],
 ['happy',
  'product.but',
  'sound',
  'device',
  'first',
  'purchase',
  'amazon',
  'product',
  'best',
  'price'],
 ['good', 'laptop', 'atleast', 'issues', 'great', 'budget', 'laptop'],
 ['laptop',
  'amd',
  'processor',
  'low',
  'budget',
  'home',
  'use',
  'laptop',
  'os',
  'win',
  '64bit',
  'os',
  'necessary',
  'drivers',
  'hp',
  'web',
  'site.it',
  'moderate',
  'laptop',
  'net',
  'surfing',
  'other',
  'office',
  'work',
  'display',
  'moderate',
  'low',
  'end',
  'hamming',
  'laptop'],
 ['good',
  'budget',
  'laptop',
  'dad',
  'hardware',
  'spec',
  'right',
  'daily',
  'basic',
  'usage',
  'office',
  'apps',
  'movies',
  'screen',
  'good',
  'quality',
  'angle',
  'better',
  'most',
  'lappys',
  'budget.thing',
  'os',
  'bluetooth',
  'bluetooth',
  'usb',
  'adapter'],
 ['quality',
  'good',
  'battery',
  'exhaust',
  'amd',
  'processor',
  'bit',
  'slow',
  'cab',
  'happy'],
 ['months',
  'battery',
  'non',
  'functional',
  'laptop',
  'electricity',
  'warranty',
  'hp',
  'claim',
  'worst',
  'experience',
  'ever.this',
  'due',
  'design',
  'battery',
  'protrusion',
  'battery',
  'even',
  'surface)laptop',
  'overall',
  'functioning',
  'good'],
 ['good',
  'buy',
  'small',
  'business',
  'week',
  'touchpad',
  'smooth',
  'difficult',
  'few',
  'lags',
  'other',
  'intel',
  'processor'],
 ['19k',
  'alienware',
  'average',
  'mousepad',
  'ordinary',
  'battery',
  'display',
  'great',
  'trips',
  'better',
  'original',
  'window'],
 ['laptop'],
 ['price', 'pocket', 'hp', 'reliability', 'assurance'],
 ['laptop',
  'day',
  'receiving.laptop',
  'battery',
  'adapter',
  'double',
  'box.only',
  'dos',
  '.drivers',
  'other',
  'apps',
  'downloaded.nice',
  'laptop',
  'bag',
  'supplied.overall',
  'good'],
 ['multiple', 'applications'],
 ['product',
  'good',
  'warranty',
  'seller',
  'back',
  'seat',
  'warranty',
  'months',
  'many',
  'times',
  'seller',
  'response'],
 ['good', 'product', 'm', 'months', 'product', 'awesome', 'speed'],
 ['screen',
  'lines',
  'amazon',
  'several',
  'time',
  'hp',
  'support',
  'cheated',
  'inspite',
  'senior',
  'leadership',
  'team',
  'several',
  'assurances',
  'days'],
 ['good', 'extra', 'installing', 'windows', 'antivirus'],
 ['laptop', 'value', 'money'],
 ['nice', 'productandnice', 'pricethanks', 'amazon'],
 ['laptop', 'good', 'price', 'information', 'correct'],
 ['fast',
  'work.awesome',
  'battery',
  'backupand',
  'interesting',
  'thing',
  'fast',
  'charging'],
 ['price', 'range', 'more', 'price', 'range'],
 ['laptop',
  'years',
  "i'm",
  'jus',
  'basic',
  'purpose',
  'studies',
  'movies',
  'today',
  'good',
  'product',
  'cheaper',
  'price'],
 ['screen',
  'quality',
  'perfect',
  'screen',
  'bar',
  'line',
  'lines',
  'displays'],
 ['lightweight',
  'easy',
  'appropriate',
  'ram',
  'screen',
  'storage',
  'space',
  'suitable',
  'students',
  'professionals',
  'lightweight',
  'performance',
  'laptop'],
 ['chapati',
  'stone',
  'laptop',
  'goodness',
  'front',
  'courier',
  'person',
  'much',
  'online',
  'product',
  'more',
  'rs',
  'delivery',
  'satisfied'],
 ['amazing',
  'products',
  'last',
  'few',
  'months',
  'day(long',
  'hours)',
  'wonderful',
  'product',
  'budget'],
 ['prompt', 'delivery', 'original', 'product', 'thanks'],
 ['iam', 'happy', 'product', 'requirement'],
 ['amazon',
  'laptop',
  'hap',
  'touch',
  'fake',
  'fake',
  'fake',
  'amazon',
  'fake'],
 ['usb', 'sockets', 'good', 'shapeless'],
 ['nice', 'one', 'price.look', 'awesome', 'display', 'weak', 'big', 'issue'],
 ['good', 'laptop', 'basic', 'daily', 'needs', 'worth'],
 ['good', 'battery'],
 ['good', 'product', 'affordable', 'price'],
 ['best', 'laptop', 'price', 'range'],
 ['gud'],
 ['basic', 'version', 'ms', 'op', 'bettter', 'other', 'versions', 'effective'],
 ['lot',
  'poor',
  'screen',
  'quality',
  'graphics',
  'low',
  'money',
  'waste',
  'product'],
 ['horrible', 'product', 'one', 'less', 'days', 'use', 'more', '15min'],
 ['able', 'angular', 'setup'],
 ['good', 'laptop', '18k'],
 ['bit', 'bulky', 'range', 'hp'],
 ['dvd', 'writer', 'laptop', 'last', 'week'],
 ['amazon',
  'satisfied',
  'product',
  'genuine',
  'product',
  'lower',
  'price',
  'amazon'],
 ['best', 'laptop', 'price', 'range'],
 ['good', 'product', 'satisfactory', 'performance', 'sound', 'low'],
 ['lap',
  'top',
  'ok',
  'advanced',
  'version',
  'product',
  'product',
  'ramanagar'],
 ['help', 'os'],
 ['good',
  'battery',
  'life',
  'poor',
  'performance',
  'average',
  'body',
  'quality',
  'god'],
 ['wrong',
  'product',
  'product',
  'optical',
  'disk',
  'drive',
  'pic',
  'optical',
  'drive'],
 ['value', 'money', 'nice', 'laptop'],
 ['satisfied', 'product', 'amazing'],
 ['nice', 'n', 'l', 'lot', 'agood', 'choice', 'woman', 'easy'],
 ['nice',
  'laptop',
  'price',
  'home',
  'non',
  'professional',
  'usage.arrived',
  'time',
  'overall',
  'good',
  'product'],
 ['laptop', 'nice'],
 ['good', 'product', 'less', 'price'],
 ['great'],
 ['fantastic',
  'lap',
  'battery',
  'life',
  'good',
  'good',
  'working',
  'condition'],
 ['wit', 'complaints', 'worth', 'money'],
 ['good'],
 ['brilliant', 'purpose'],
 ['awesome',
  'product',
  '20k',
  'price',
  'tag',
  'kinds',
  'os.download',
  'necessary',
  'drivers',
  'hp',
  'official',
  'website.battery',
  'backup',
  'quality'],
 ['bad', 'product'],
 ['defected', 'product', 'wrong', 'warrenty', 'period'],
 ['specification', 'product', 'nice', 'complaints'],
 ['third',
  'quality',
  'laptop',
  'windows',
  'bhi',
  'alag',
  'se',
  'upgrade',
  'karana',
  'padta',
  'hai'],
 ['good', 'nice', 'product'],
 ['battery', 'fuxntion', 'battery'],
 ['worth', '19k', 'thanks', 'amazon'],
 ['value', 'money'],
 ['price', 'good'],
 ['satisfied', 'product.good'],
 [''],
 ['laptop', 'service', 'good'],
 ['very.goood'],
 ['product', 'better', 'battery', 'performance', 'good'],
 ['awesome'],
 ['good', 'product', 'price'],
 ['best'],
 ['good', 'usb', 'port'],
 ['good', 'product', 'hp'],
 [''],
 ['good', 'product'],
 ['good', 'product', 'range'],
 ['worth', 'cost', 'purpose', 'good', 'product'],
 ['package', 'damage'],
 ['wonderful', 'product'],
 ['quality'],
 ['good', 'product'],
 ['nice'],
 ['satisfied', 'product'],
 ['sasta', 'sundar'],
 ['bad'],
 ['defective', 'product'],
 ['normal', 'work'],
 ['bad'],
 ['bad', 'product'],
 [''],
 ['bad', 'laptop'],
 ['good', 'buy', 'basic', 'function'],
 [''],
 ['worth', 'price'],
 ['good', 'laptop'],
 ['nice'],
 ['battery', 'bacup', 'gud'],
 ['good', 'screen', 'quality'],
 ['best', 'laptop'],
 [''],
 ['laptop', 'sahi', 'nhi', 'h'],
 ['value', 'money', 'unique', 'category'],
 ['good', 'product'],
 ['nice', 'laptop', 'light', 'weight', 'virtualization', 'best', 'budget'],
 ['poor', 'product'],
 ['good', 'product'],
 ['nice'],
 ['good', 'configuration', 'speed', 'good'],
 ['good'],
 ['bad'],
 ['great', 'product', 'value', 'money'],
 ['bakwas'],
 ['bill', 'laptop', 'warranty', 'card'],
 ['nice'],
 ['cool', 'battry', 'drainage', 'issue'],
 ['good', 'product', 'price', 'segment'],
 ['product',
  'worth',
  'money',
  'better',
  'choice',
  'middle',
  'class',
  'performance',
  'good'],
 ['excellent', 'product'],
 ['window'],
 ['better'],
 ['good', 'laptop'],
 ['thenks'],
 ['great', 'product'],
 ['value', 'money', 'awesome'],
 ['nice', 'processor', 'fast', 'worth', 'buying'],
 [''],
 ['good', 'compact'],
 ['excellent', 'product'],
 ['good', 'product'],
 ['good', 'products'],
 ['excellent'],
 ['excellent', 'product', 'worth', 'money'],
 ['great', 'laptop', 'price'],
 ['windows',
  'person',
  'new',
  'os.-',
  'a6',
  'better',
  'gen',
  'i3',
  'processors-',
  'quality',
  'good',
  'price',
  'range.-',
  'back',
  'light',
  'keywords',
  'aware',
  'same.-',
  'optical',
  'drive',
  'vga',
  'port',
  'hdmi',
  'usb',
  'card',
  'reader',
  'bluetooth',
  'mm',
  'headphone',
  'jack',
  'awesome',
  'mobile',
  'headphone',
  'mic'],
 ['good',
  'product',
  '19k',
  'issues',
  'processor',
  'hardware',
  'months',
  'good',
  'students',
  'problem',
  'driver',
  'software',
  'usb',
  'ports',
  'unavailable',
  'hp',
  'software',
  'site',
  'lenovo',
  'drivers',
  'other',
  'issues'],
 ['connection',
  'several',
  'times',
  'drivers',
  'installation',
  'efforts',
  'drain',
  'hp',
  'issue',
  'service',
  'man'],
 ['week',
  'experiencegood',
  'product',
  'price.using',
  'ubuntu',
  'decent',
  'amount',
  'ram',
  'regular',
  'progs',
  'heavy',
  'files',
  'memory',
  'good',
  'graphics',
  'runs',
  'steam',
  'hitman',
  'game',
  'a6',
  'apu.3',
  'decent',
  'build4',
  'good',
  'battery',
  'backup',
  'hrs',
  'backup',
  'videos',
  'wired',
  'internet.5',
  'problem',
  'summercons:1',
  'hour',
  'more',
  'battery',
  'backup',
  'great2',
  'inch',
  'screen',
  'little',
  'verdict',
  'decent',
  'laptop',
  'price'],
 ['quality',
  'last',
  'months',
  'crack',
  'keyboard',
  'battery',
  'locks',
  'properly(one',
  'et',
  'al'],
 ['months',
  'mother',
  'board',
  'warranty',
  'next',
  'day',
  'fan',
  'case',
  'waiting.edit',
  'fan',
  'warranty',
  'rating',
  'os',
  'crashes',
  'blue',
  'screen',
  'day',
  'sure',
  'hardware',
  'software',
  'issue'],
 ['awesome',
  'product',
  'price',
  'range',
  'last',
  'couple',
  'days',
  'lagging',
  'issue',
  'heating',
  'issue',
  'budget',
  'range',
  '20k'],
 ['amazon',
  'last',
  'month',
  'time',
  'issue',
  'machine',
  'anti',
  'glared',
  'screen',
  'great',
  'applications',
  'windows',
  'bettary',
  'hours',
  'continues',
  'use',
  'light',
  'weight',
  'slim',
  'budget',
  'requirements'],
 ['laptop',
  'days',
  'prime',
  'thanks',
  'seller.product',
  'cheap',
  'good',
  'performance',
  'touchpad',
  'responsive',
  'windows',
  'overall',
  'better',
  'performance',
  'hdd',
  'ssd',
  'upgrade',
  'ram',
  'gb',
  'gb',
  'gb'],
 ['laptop',
  'axis',
  'bank',
  'credit',
  'card',
  'months',
  'first',
  'credit',
  'card',
  'bill',
  'product',
  'emi',
  'complete',
  'amount',
  'statement',
  'bank',
  'seller',
  'amount',
  'emi',
  'complete',
  'amount',
  'credit',
  'card',
  'bill',
  'fuss'],
 ['good',
  'product',
  'good',
  'value',
  'money',
  'months',
  'keyboard',
  'light',
  'dark',
  'problem',
  'other',
  'good',
  'basic',
  'uses',
  'programs',
  'good',
  'enought',
  'android',
  'development',
  'amd',
  'cpu',
  'arm',
  'system',
  'image',
  'slow'],
 ['product',
  'defect',
  'left',
  'side',
  'usb',
  'device',
  'connector',
  'connection',
  'pendrive',
  'charger',
  'wise',
  'device',
  'time',
  'return',
  'more',
  'nice',
  'fire',
  'enthusism'],
 ['ton',
  'laptop',
  'price',
  'solid',
  'extra',
  'gb',
  'ram',
  'laptop',
  'interested',
  'ram',
  'dimm',
  'slots',
  'gb',
  'other',
  'free',
  'extra',
  'dimm',
  'sure',
  'low',
  'voltage',
  'sure',
  'regular',
  'ddr3',
  'voltage',
  'motherboard',
  'compatible',
  'stock',
  'dimm',
  'hynix',
  'ddr3l',
  'gb',
  'hynix',
  'hyundai',
  'electronic',
  'division',
  'win',
  'x64',
  'bit',
  'seconds',
  'max',
  'extra',
  'ram',
  'computer',
  'zip',
  'processes',
  'heat',
  'issues',
  'glitches',
  'month',
  'use',
  'weight',
  'solid',
  'finish',
  'pseudo',
  'metal',
  'type',
  'artwork',
  'touchpad',
  'areas',
  'cheap',
  'plastic',
  'amd',
  'a6',
  'best',
  'processors',
  'great',
  'long',
  'life',
  'care',
  'older',
  'a6',
  'dual',
  'core',
  'years',
  'laptops',
  'vents',
  'dust',
  'cool',
  'place',
  'amd',
  'a6',
  'money',
  'intel',
  'i3',
  'i5',
  'generation',
  'processor',
  'complete',
  'waste',
  'money',
  'intel',
  'lawsuits',
  'past',
  'faulty',
  'soldering',
  'processors',
  'google',
  'only',
  'things',
  'keyboard',
  'laptops',
  'moulding',
  'keyboard',
  'keyboard',
  'protector',
  'removable',
  'keyboard',
  'screen',
  'ok',
  'great',
  'anti',
  '-',
  'glare',
  'matte',
  'finish',
  'default',
  'ips',
  'hd',
  'screen',
  'price',
  'point',
  'more',
  'presentations',
  'students',
  'moderate',
  'office',
  'work',
  'stuff',
  'gaming',
  'high',
  'fps',
  'drivers',
  'pc',
  'bit',
  'pain',
  'hp',
  'support',
  'assistant',
  'pc',
  'drivers',
  'warranty',
  'similar',
  'hp',
  'laptop',
  'similar',
  'chipset',
  'drivers',
  'support',
  'page',
  'hp',
  'g',
  '221au',
  'drivers',
  'pc',
  'audiophile',
  'laptop',
  'sound',
  'quality',
  'speakers',
  'bottom',
  'wrists',
  'dts',
  'sound',
  'application',
  'realtek',
  'sound',
  'driver',
  'best',
  'sound',
  'cards',
  'long',
  'time',
  "don't",
  'solid',
  'bass',
  'unrealistic',
  'sound',
  'clarity',
  'volume',
  'loudness',
  'good',
  'other',
  'laptops',
  'good',
  'set',
  'ear',
  'headphones',
  'dts',
  'settings',
  'default',
  'generic',
  'windows',
  'equalizer',
  'amazed',
  'sound',
  'clarity',
  'bass',
  'dts',
  'webcam',
  'good',
  'great',
  'basic',
  'skype',
  'photo',
  'snaps',
  'computers',
  'vt',
  'virtualization',
  'technology',
  'interested',
  'virtual',
  'machines',
  'other',
  'simulation',
  'software',
  'able',
  'dvd',
  'drive',
  'slim',
  'dvd',
  'writer',
  'small',
  'profile',
  'quiet',
  'readingit',
  'rj',
  'port',
  'vga',
  'port',
  'hdmi',
  'port',
  '1x',
  'usb',
  'port',
  'usb',
  'ports',
  'touchpad',
  'responsive',
  'synaptics',
  'elan',
  'touchpad',
  'bit',
  'downer',
  'synaptics',
  'best',
  'touchpads',
  'job',
  'issues',
  'trackspeed',
  'movement',
  'bluetooth',
  'good',
  'realtek',
  'chipset',
  'connects',
  'first',
  'shot',
  'issues',
  'realtek',
  'chip',
  'good',
  'signal',
  'floors',
  'concrete',
  'house',
  'rebar',
  'several',
  'walls',
  'sure',
  'good',
  'wifi',
  'driver',
  'card',
  'default',
  'windows',
  'driver',
  'bar',
  'realtek',
  'driver',
  'bars',
  'signal',
  'strength',
  'settings',
  'device',
  'manager',
  'control',
  'panel',
  'laptop',
  'budget',
  'keyboard',
  'protector',
  'saco',
  'brand',
  'it)',
  'laptop',
  'years',
  'old',
  'terms',
  'chipset',
  'mid',
  'terms',
  'amd',
  'a6',
  'price',
  'point',
  'terms',
  'ports',
  'worth',
  'it!if',
  'review',
  'helpful',
  'like',
  'helpful',
  'button',
  'thanks'],
 ['great', 'laptop', 'prize', 'stars', 'windows'],
 ['days',
  'delivery',
  'laptop',
  'best',
  'noticeable',
  'lag',
  'price',
  'range',
  'best',
  'battery',
  'life',
  'superb',
  'most',
  'softwares',
  'heavy',
  'coding',
  'softwares',
  'normal',
  'company',
  'use',
  'good'],
 ['bad.never', 'bad', 'display.far', 'average', 'display.regret', 'buy'],
 ['amd',
  'a6',
  'better',
  'i5',
  'processor',
  'doubttested',
  'games',
  'nfs',
  'mw',
  'elite',
  'effect'],
 ['problem',
  'win',
  'bit',
  'installation',
  'little',
  'bit',
  'lowered',
  'catylist',
  'driver',
  'installation.battery',
  'web',
  'browsing',
  'hse',
  'comp.sc/app',
  'tools',
  'functions',
  'ms',
  'office',
  'gimp',
  'geany',
  'gcc',
  'compilar',
  'libre',
  'office',
  'sql',
  'php',
  'ubuntu',
  'lts',
  'dual',
  'boot',
  'system',
  'grub',
  'update',
  'terminal',
  'dual',
  'boot',
  'screen',
  'ubuntu',
  'brightness',
  'problem',
  'win',
  'amd',
  'display',
  'driver',
  'configuration'],
 ['good',
  'oneif',
  'gamer',
  'best',
  'choice',
  'price',
  'range',
  'thing',
  'moderate',
  'use',
  'body',
  'seller',
  'good'],
 ['absolute',
  'value',
  'money',
  'budget',
  'model',
  'high',
  'speed',
  'hard',
  'disk',
  'business',
  'laptop',
  'hp',
  'website',
  'price'],
 ['satisfied', 'price'],
 ['good',
  'productshould',
  'accessories',
  'bagand',
  'cabel',
  'way',
  'good',
  'product'],
 ['display',
  'laptop',
  'good',
  'driver',
  'picture',
  'quality',
  'display',
  'grainier',
  'jazzy'],
 ['excellent',
  'product',
  'decent',
  'price',
  'bracket',
  'performance',
  'excellent',
  'higher',
  'ram',
  'good',
  'battery',
  'backup',
  'hours*/depends',
  'individual',
  'usage'],
 ['ports', 'speed', 'mark'],
 ['nice', 'laptop', 'home', 'use'],
 ['days',
  'laptop',
  'complaints',
  'stuffs',
  'better',
  'aspect',
  'laptop',
  'one',
  'onebuildi',
  'laptop',
  'vacation',
  'outdoor',
  'most',
  'part',
  'firm',
  'light',
  'weight',
  'whole',
  'plastic',
  'enough',
  'place',
  'need',
  'keypad',
  'light',
  'work',
  'dark',
  'top',
  'good',
  'texture',
  'hp',
  'logo',
  'usb',
  'port',
  'none',
  'lights',
  'webcam',
  'right',
  'side',
  'laptop',
  'hdd',
  'notification',
  'lan',
  'port',
  'right',
  'side',
  'usual',
  'cd',
  'reader',
  'writer',
  'keypads',
  'tactile',
  'clicky',
  'front',
  'side',
  'card',
  'reader',
  'left',
  'hdmi',
  'back',
  'u',
  'battery',
  'down',
  'sideperformancei',
  'laptop',
  'daily',
  'presentation',
  'stuffs',
  'amd',
  'a6',
  'g4',
  'radeon',
  'lags',
  'massive',
  'slow',
  'downs',
  'heavy',
  'software',
  'adobe',
  'games',
  'gta',
  'amd',
  'compatibility',
  'issues',
  'emulators',
  'antivirus',
  'defender',
  'good',
  'adobe',
  'photoshop',
  'games',
  'company',
  'heroes',
  'littlestandbybattery',
  'hours',
  'usage',
  'average',
  'opinion',
  'battery.it',
  'locks',
  'back',
  'bottom',
  'laptop',
  'pipe',
  'battery',
  'out.screenscreen',
  'bright',
  'anti',
  'glare',
  'good',
  'sunlight',
  'difficultycamerait',
  'mega',
  'pixel',
  'camera',
  'microphone',
  'decent',
  'one',
  'good',
  'photo',
  'enough',
  'lighting',
  'low',
  'light',
  'prone',
  'distortion',
  'sufficient',
  'video',
  'chatsspeakerspeaker',
  'bottom',
  'front',
  'laptop',
  'audible',
  'noise',
  'disturbance',
  'audible',
  'laptop',
  'good',
  'compactness.if',
  'average',
  'user',
  'productive',
  'works',
  'excel',
  'sheets',
  'presentation',
  'fine',
  'choice',
  'only',
  'plastiky',
  'finish',
  'performance',
  'money',
  'ok'],
 ['screen',
  'awesome',
  'anti',
  'glare',
  'battery',
  'life',
  'decent',
  'keyboard',
  'good',
  'slight',
  'heating',
  'bottom',
  'summers',
  'sound',
  'good',
  'price',
  'point',
  'excellent'],
 ['plastic', 'brittle', 'grandmother', 'windows'],
 ['perfect',
  'school',
  'office',
  'use',
  'cheap',
  'beneficiao',
  'go.very',
  'smooth',
  'easy'],
 ['day', 'lag', 'stuck', 'product', 'ordering', 'amazon', 'time'],
 ['good', 'product', 'expectations'],
 ['unworthy', 'product', 'this.dont', 'one'],
 ['good', 'laptop', 'price', 'nice', 'performance', 'bad'],
 ['process', 'slow', 'sound', 'system', 'bad'],
 ['awesome', 'product'],
 ['problem'],
 ['laptop', 'years', 'heavy', 'battery', 'life', 'many', 'times'],
 ['laptop', 'good', 'performance', 'review', 'usage', 'invoice'],
 ['simple', 'superb', 'quality'],
 ['good', 'smart'],
 ['keyboard'],
 ['battery', 'backup', 'good'],
 ['name',
  'quality',
  'hp',
  'tb',
  'hdd',
  'gb',
  'ram',
  'latest',
  '9th',
  'generation',
  'a9',
  'processor',
  'hrs',
  'battery',
  'fast',
  'speed',
  'ghz',
  '9th',
  'gen',
  '.',
  'processor',
  'today',
  'equal',
  'ghz',
  'competition',
  'good',
  'multi',
  '-',
  'tasking',
  'same',
  'time',
  'mistake',
  'thinking',
  'similar',
  'capabilities',
  'gaming',
  'laptops',
  '21k',
  'best',
  'cheapest',
  'laptop'],
 ['product',
  'time',
  'prime',
  'member',
  'setup',
  'system',
  'ms',
  'office',
  'performance',
  'money'],
 ['nice', 'laptop'],
 ['fourth',
  'hp',
  'product',
  'smooth',
  'battery',
  'half',
  'hours',
  'few',
  'video',
  'streaming',
  'full',
  'recharge',
  'half',
  'hours',
  'sound',
  'graphics',
  'excellent'],
 ['laptop',
  'hp',
  '14q',
  'cs0018-tu',
  '19k',
  'inr',
  'july',
  'prime',
  'day',
  'fast',
  'nvme',
  'ssd',
  'read',
  'speeds',
  'gb',
  's',
  'windows',
  'boots',
  'less',
  'seconds',
  'cheapest',
  'laptop',
  'fast',
  'nvme',
  'ssd',
  'toshiba',
  'kbg30zmv256',
  'g',
  'kaby',
  'lake',
  'r',
  'pentium',
  'gold',
  'processor',
  'cores',
  'threads',
  'equivalent',
  'core',
  'i3',
  'laptop',
  'thin',
  'light',
  'keyboard',
  'decent',
  'brick',
  'small',
  'portable',
  'sufficient',
  'cable',
  'length.the',
  'major',
  'downside',
  'screen',
  'sub',
  '-',
  'full',
  'hd',
  'panel',
  'ok',
  'price',
  'point',
  'other',
  'downside',
  'speakers',
  'nit',
  'picking.overall',
  'happy',
  'laptop',
  'great',
  'web',
  'browsing',
  'productivity',
  'office',
  'work',
  'light',
  'programming',
  'best',
  'laptop',
  'inr',
  'segment',
  'expensive',
  'laptops',
  'rpm',
  'hdd'],
 ['rs',
  'price.the',
  'body',
  'plastic',
  'shiny',
  'plastic',
  'hp',
  'easily.1',
  'display',
  'fine',
  'good',
  'bad.2',
  'keyboard',
  'fine',
  'backlit',
  'keyboard',
  'price.3',
  'mouse',
  'pad',
  'bit',
  'slow',
  'sensitivity.4',
  'gesture',
  'support',
  'there.5',
  'battery',
  'life',
  'good',
  'laptop',
  'netflix',
  'offline',
  'hours',
  'full',
  'brightness',
  'earphones',
  'battery',
  'good',
  'backup6',
  'gaming',
  'basic',
  'games',
  'gta',
  'vice',
  'city',
  'expected.7',
  'ssd',
  'huge',
  'difference',
  'pc',
  'boots',
  'seconds',
  'storage',
  'gb',
  'worth',
  'laptop',
  'other',
  'hp',
  'i5',
  '8th',
  'gen',
  'processor8',
  'usb',
  'usb',
  'ethernet',
  'hdmi',
  'headphone',
  'jack',
  'sd',
  'card',
  'reader',
  'ports.9',
  'speakers',
  'good',
  'loud',
  'tiny.10',
  'small',
  'fan',
  'heating',
  'issues.11',
  'webcam',
  'ok',
  'qualityoverall',
  'good',
  'buy',
  '20k',
  'product'],
 ['19k',
  'prime',
  'day',
  'deal',
  'good',
  'laptop',
  'school',
  'students',
  'gb',
  'ssd',
  'reasonable',
  'processor',
  'power',
  'efficient',
  'ram',
  'gb',
  'resolution',
  'price.overall',
  'premium',
  'laptop.windows',
  'great',
  'laptop',
  'latest',
  'build',
  'updatable',
  'windows',
  'update.first',
  'thing',
  'setuo',
  'uninstall',
  'mccafe',
  'software',
  'need',
  'windows',
  'defender',
  'antivirus',
  'software.also',
  'other',
  'crapware',
  'dropbox',
  'hp',
  'apps'],
 ['laptop',
  'smooth',
  'sharp',
  'windows',
  'office',
  'thin',
  'light',
  'booting',
  'slow',
  'review',
  'couple',
  'days'],
 ['great',
  'hopes',
  'laptop',
  'laptop',
  'crucial',
  'business',
  'days',
  'receiving',
  'god',
  'long.i',
  'negative',
  'ratings',
  'garbage.bottomline',
  'cheap',
  'laptops'],
 ['pros:-',
  'good',
  'entry',
  'level',
  'laptop',
  'compact',
  'light',
  'laptop',
  'easy',
  'keypad',
  'great',
  'subscription',
  'mcafee',
  'office',
  'school',
  'edition-',
  'sound',
  'quality',
  'picture',
  'quality',
  'top',
  'class',
  'good',
  'home',
  'usage',
  'light',
  'office',
  'work-',
  'good',
  'options',
  'touchpadcons:-',
  'touch',
  'screen-',
  'extendable',
  'memory',
  'slot',
  'gb',
  'ram'],
 ['high',
  'end',
  'laptops',
  'ssd',
  'technology',
  '1080p',
  'videos',
  'youtube',
  'lag',
  'anywhere.sound',
  'quality',
  'good',
  'headphones',
  'speakers',
  'ok',
  'normal',
  'use.boot',
  'time',
  'best',
  'less',
  'seconds.battery',
  'hours',
  'moderate',
  'use.no',
  'cd',
  'drive',
  'home',
  'student',
  'heating',
  'operation',
  'ssd',
  'think.webcam',
  'good',
  'normal',
  'chats',
  'hd',
  'one',
  'good.display',
  'hd',
  'good',
  'movies.never',
  'games.weight',
  'other',
  'laptops',
  'range.one',
  'downside',
  'office',
  'version',
  'trial',
  '8k',
  'lifetime',
  'mcafee',
  'other',
  'junk',
  'softwares',
  'first',
  'boot',
  'windows',
  'defender',
  'good',
  'pc.price',
  'amazon',
  'eoffersindia',
  'price',
  'drop',
  'alert'],
 ['good',
  'specifications',
  'fast',
  'performance',
  'gb',
  'ssd',
  'pcie',
  'nvme',
  'ssd',
  'nvme',
  'ssd',
  'advanced',
  'normal',
  'ssd',
  'difference',
  'hdd',
  "ssd's.but",
  'description',
  'dvd',
  'drive',
  'that.pros:1.thin2.handy',
  'weight',
  'hd.4.sound',
  'good.5.fast',
  'prompt',
  'nvme',
  'ssdcons:1.no',
  'keyboard',
  'light.2.no',
  'dvd',
  'writer.3.microsoft',
  'product',
  'activation',
  'few',
  'high',
  'volumes',
  'speakers',
  'sound.5',
  'vga',
  'slot',
  'few',
  'people',
  'much',
  'issue).6',
  'usb',
  'c',
  'port.7',
  'usb',
  '3.1let',
  'ahead.overall',
  'professionals',
  'decent',
  'performance',
  'gb',
  'ssd',
  'pcie',
  'nvme',
  'ssd'],
 ['back',
  'college',
  'laptop',
  'friends',
  'tb',
  'ssd',
  'whole',
  'set',
  'off.played',
  'whole',
  'assassin',
  'creed',
  'black',
  'flag',
  'little',
  'lag',
  'engineering',
  'softwares',
  'lag(except',
  'sucky',
  'wifi',
  'college)overall',
  'best',
  'laptop',
  '20k',
  'hdd',
  'production',
  'power',
  'house',
  'budget'],
 ['oer',
  'date',
  'product',
  'good',
  'condition',
  'hp',
  'good',
  'brand',
  'recepient',
  'best',
  'use',
  'same'],
 ['great',
  'laptop',
  'price',
  'at19.5k',
  'battery',
  'life',
  'decent',
  'hours',
  'finish',
  'decent',
  'great',
  'ssd',
  'boot',
  'time',
  'seconds.negatives-',
  'keyboard',
  'okay',
  'hd',
  'resolution',
  'price',
  'cons',
  'acceptable'],
 ['first',
  'gb',
  'ram',
  'gb',
  'ssd',
  'model.got',
  'independence',
  'day',
  'sales',
  '%',
  'instant',
  'discount',
  'sbi',
  'card',
  'people',
  'performance',
  'gb',
  'ssd',
  'performance',
  'boot',
  'tb',
  'hdd',
  'model',
  'perfect',
  'home',
  'use',
  'student',
  'use',
  'gamers',
  'photoshop.my',
  'advice',
  'above',
  'usage',
  'categories',
  'best',
  'config',
  'available',
  'price',
  'point',
  'ssd',
  'gb',
  'ram',
  'tb',
  'hdd',
  'extra',
  'ram',
  'portable',
  'hdd'],
 ['product',
  'good',
  'first',
  'day',
  'beautiful',
  'beautiful',
  'yeh',
  'toh',
  'tatti',
  'hai'],
 ['month',
  'review',
  'laptop',
  'rocket',
  'gaming',
  'laptop',
  'best',
  'normal',
  'official',
  'work',
  'web',
  'browsing',
  'simple',
  'editing'],
 ['screen',
  'good',
  'display',
  'awesome',
  'laptop',
  'sleek',
  'lightweight',
  'battery',
  'backup',
  'pathetic',
  'best',
  'hours',
  'maximum',
  'day',
  'trial',
  'mcafee',
  'anti',
  '-',
  'virus',
  'free',
  'careful',
  'other',
  'anti',
  'virus',
  'software',
  '-',
  'mcafee',
  'anti',
  'virus',
  'other',
  'ant',
  'virus',
  'software',
  'system',
  'similar',
  'problem',
  'factory',
  'settings',
  'good',
  'laptop',
  'better',
  'battery',
  'backup'],
 ['good',
  'product',
  'basic',
  'usage',
  'lightweight',
  'performance',
  'sturdy',
  'battery',
  'good',
  'genuine',
  'windows',
  'bonus',
  'price',
  'point'],
 ['ssd',
  'laptops.very',
  'high',
  'performance',
  'speed',
  'win10',
  'loads',
  'second',
  'kaspersky',
  'internet',
  'security',
  'i3',
  'i5',
  'delay',
  'processing',
  'speed',
  'par',
  'i3',
  'processor',
  'sdd',
  'weight',
  'light'],
 ['good', 'performance', 'sound', 'super', 'comfortable', 'slim', 'light'],
 ['laptop',
  'hardware',
  'problem',
  'cpu',
  'usage',
  'day',
  '%',
  'cpu',
  'usage',
  'skype',
  'windows',
  'laptop',
  'minimum',
  'laptop',
  'clicks',
  'next',
  'day',
  'laptop',
  'auto',
  'repairing',
  'auto',
  'fixing',
  'laptop',
  'today',
  'horrible',
  'experience'],
 ['amazing',
  'product',
  'stylist',
  'look',
  'photography',
  'hobby',
  'needs',
  'picture',
  'adobe',
  'photoshop',
  'pics',
  'photoshop',
  'systems',
  'slow',
  'i5',
  'gb',
  'better',
  'performance'],
 ['good',
  'specification',
  'world',
  'brand',
  'hp',
  'licenced',
  'windows',
  'suitable',
  'colleges',
  'students',
  'cost',
  'effective',
  'problem',
  'ms',
  'office',
  'trial',
  'version',
  'days'],
 ['excellent',
  'purchase',
  'reliable',
  'brand',
  'smooth',
  'os',
  '21k',
  'good',
  'deal'],
 ['battery',
  'life',
  'last',
  'hours',
  'max',
  'normal',
  'uses',
  'screen',
  'quality',
  'little',
  'bit',
  'lighter',
  'weight',
  'fine',
  'mention',
  'laptop',
  'charger',
  'simple',
  'bag',
  'worst',
  'simplicity',
  'cartoon',
  'happy',
  'offer',
  'rs.19.999',
  'range',
  'stuff',
  'good',
  'higher',
  'stuff'],
 ['readers',
  'laptop',
  'days',
  'limited',
  'usage',
  'review',
  'helpful',
  'decision',
  'light',
  'weight',
  'good',
  'mac',
  'ssd',
  'windows',
  'boots',
  'less',
  'sec',
  'keyboard',
  'quality',
  'good',
  'sound',
  'quality',
  'good',
  'stereo',
  'effect.4',
  'premium',
  'product',
  'build',
  'quality',
  'good.5',
  'new',
  'generation',
  'lappy',
  'inbuilt',
  'battery',
  'user',
  'serviciable',
  'part',
  'pentium',
  'gold',
  'processor',
  'good',
  'core',
  'i3',
  'gb',
  'ram',
  'gb',
  'ssd',
  'licence',
  'copy',
  'bang',
  'bucks',
  'decent',
  'laptop',
  'basic',
  'work',
  'ms',
  'office',
  'internet',
  'surfing',
  'youtube',
  'config',
  'normal',
  'office',
  'use',
  'autocad',
  'minitab',
  'nfs',
  'run',
  'all.if',
  'clear',
  'use',
  'exceptions',
  'laptop',
  'chota',
  'packet',
  'bada',
  'dhamaka',
  'great',
  'indian',
  'sale',
  'prise',
  'brand',
  'hp',
  'ssd',
  'traditional',
  'sata',
  'hdd',
  'huge',
  'diffanance',
  'working',
  'premium',
  'lightweight',
  'mac',
  'like',
  'gigs',
  'movies',
  'laptop',
  'external',
  'usb',
  'drive',
  'purpose',
  'daily',
  'usage',
  'ssd',
  'huge',
  'diffarance',
  'hdd',
  'usb',
  'ports',
  'faster',
  'file',
  'transfer',
  'compatable',
  'devices.please',
  'note',
  'dosent',
  'dvd',
  'rw',
  'drive',
  'battery',
  'non',
  '-',
  'removable',
  'laptop',
  'bag',
  'provided.i',
  'happy',
  'purchase',
  'thanks',
  'day'],
 ['boots',
  'max',
  'seconds',
  'due',
  'nice',
  'windows',
  'gb',
  'rest',
  'fine',
  'good',
  'students',
  'programming',
  'daily',
  'stuff',
  'pdf',
  'charm.bought',
  'good',
  'value',
  'money',
  'satisfied'],
 ['sec',
  'laptop',
  'ready',
  'for.2',
  'external',
  'hardware',
  'lower',
  'quality',
  'plastic.3',
  'screen',
  'color',
  'ok',
  'more',
  'price.4',
  'light',
  'weight.5',
  'battery',
  'backup',
  'ms',
  'office',
  'genuine',
  'office',
  'range.7',
  'battery',
  'removable',
  'smartphone',
  'today',
  'replacement',
  'battery',
  'hp',
  'service',
  'center'],
 ['good',
  'works',
  'windows',
  'good',
  'macbook',
  'pro',
  'par',
  'terms',
  'speed',
  'resolution',
  'okay',
  'high',
  'resolution',
  'screen',
  'personal',
  'use',
  'high',
  'processing',
  'application'],
 ['light',
  'book',
  'copydisplay',
  'minimum',
  'colour',
  'quality',
  'light',
  'speaker',
  'sound'],
 ['price',
  'point',
  '20k',
  'smoothest',
  'operating',
  'laptop',
  'range',
  'ssd',
  'disk',
  'wonders',
  'battery',
  'backup',
  'good',
  'house',
  'requirements',
  'works',
  'perfect',
  'overall',
  'build',
  'good',
  'mat',
  'finish',
  'screen',
  'resolution',
  'ok',
  'sound',
  'quality',
  'good',
  'good',
  'value',
  'money'],
 ['positive', 'reviews', 'product', 'product', 'useless', 'sure', 'product'],
 ['laptop',
  'rs',
  'exchange',
  'festival',
  'smart',
  'thing',
  'hp',
  'laptop',
  'standard',
  'tb',
  'hdd',
  'available',
  'price',
  'points',
  'gb',
  'hdd',
  'most',
  'home',
  'purposes',
  'light',
  'office',
  'work',
  'streaming',
  'better',
  'choice',
  'ssd',
  'better',
  'battery',
  'life',
  'laptop',
  'lightweight',
  'homely',
  'work',
  'pre',
  '-',
  'loaded',
  'windows',
  'steal',
  'price'],
 ['black', 'line', 'screen', 'days', 'product'],
 ['laptop', 'good', 'delivery', 'fast', 'invoice', 'product'],
 ['laptop',
  'amazon',
  'sale',
  'old',
  'dell',
  'i3',
  'laptop',
  'best',
  'deal',
  'boot',
  'due',
  'ssd',
  'usage',
  'minimal',
  'such',
  'web',
  'browsing',
  'movies',
  'ms',
  'office',
  'perfect',
  'buy',
  'external',
  'hard',
  'drive',
  'additional',
  'need',
  'space',
  'old',
  'dell',
  'vostro',
  'laptop',
  'great',
  'value',
  'money'],
 ['today',
  'product',
  'average',
  'look',
  'natural',
  'silver',
  'colour',
  'price',
  'ssd',
  'one',
  '15k',
  'performance',
  'wise',
  'product',
  'great',
  'battery',
  'life',
  'good',
  'screen',
  'resolution',
  'average',
  'overall',
  'value',
  'money',
  'other',
  'product',
  'brand',
  'offer',
  'same',
  'configuration',
  'amazing',
  'price',
  'point'],
 ['laptop',
  '18k',
  'bank',
  'offer',
  'great',
  'indian',
  'festival',
  'sale',
  'laptop',
  'next',
  'day',
  'packaging',
  'great',
  'review',
  'days.performance',
  'only',
  'laptop',
  'ssd',
  'price',
  'point',
  'huge',
  'difference',
  'responsiveness',
  'system',
  'boot',
  'speed',
  'windows',
  'boots',
  'seconds',
  'apps',
  'such',
  'microsoft',
  'word',
  'chrome',
  'pentium',
  'dual',
  'core',
  'hyperthreading',
  'logical',
  'cores',
  'decent',
  'performer',
  'web',
  'browsing',
  'word',
  'processing',
  'video',
  'playback',
  'best',
  'part',
  'gb',
  'ram',
  'box',
  'gb',
  'ram',
  'slot',
  'empty',
  'slot',
  'inch',
  'drive',
  'ssd',
  'hdd',
  'gb',
  'word',
  'advice',
  'laptop',
  'ton',
  'bloatware',
  'sure',
  'needless',
  'games',
  'software.build',
  'quality',
  'expensive',
  'laptop',
  'chassis',
  'plastic',
  'good',
  'quality',
  'little',
  'flex',
  'keyboard',
  'deck',
  'screen',
  'keyboard',
  'keys',
  'tactile',
  'good',
  'travel',
  'trackpad',
  'accurate',
  'tracking',
  'reliable',
  'gesture',
  'control.media',
  'consumption',
  'screen',
  'bright',
  'colours',
  'punchy',
  'inch',
  'display',
  'good',
  'size',
  'resolution',
  'price',
  'laptop',
  'sweat',
  'videos',
  'youtube',
  'external',
  'display',
  'peace',
  'mind',
  'hardware',
  'speakers',
  'loud',
  'clear',
  'high',
  'volume',
  'bass',
  'little',
  'lacking',
  'though.battery',
  'life',
  'light',
  'medium',
  'usage',
  'such',
  'youtube',
  'video',
  'playback',
  'web',
  'browsing',
  'word',
  'processing',
  'hours',
  'battery',
  'single',
  'charge',
  'laptop',
  'fast',
  'charging',
  'hours.final',
  'thoughts',
  'laptop',
  'replacement',
  'old',
  'desktop',
  'computer',
  'dad',
  'happy',
  'purchase',
  'need',
  'secondary',
  'pc',
  'computer',
  'old',
  'desktop',
  'parents',
  'laptop',
  'consideration',
  'sure',
  'laptop',
  'sale',
  'particular',
  'configuration',
  'available',
  '25k',
  'bank',
  'offer',
  'deal'],
 ['satisfied',
  'laptop',
  'booting',
  'speed',
  'application',
  'speed',
  'daily',
  'use',
  'application',
  'browser',
  'battery',
  'life',
  'outstanding',
  'comfortable',
  'daily',
  'use',
  'typing',
  'browsing',
  'books',
  'notes',
  '13k',
  'amazon',
  'sale',
  'more',
  'happy.bonus',
  'point',
  'appario',
  'seller',
  'genuine',
  'product'],
 ['i5',
  'earlier',
  'i5',
  'hp',
  'laptop',
  'good',
  'heavy',
  'computing',
  'tasks',
  'comparison',
  'old',
  'laptop',
  'simple',
  'excel',
  'aggregation',
  'functions',
  'one',
  'test',
  'happy',
  'operations',
  'hours',
  'cpu',
  '%',
  'freezing',
  'due',
  'exhaust',
  'ducts',
  'such',
  'way',
  'flap',
  'reason.otherwise'],
 ['awesome',
  'price',
  'range',
  '18k',
  'nvme',
  'ssd',
  'boots',
  'sec',
  'low',
  'pentium',
  'processor',
  'regular',
  'i3',
  'i5',
  'hdd',
  'pentium',
  'nvme',
  'ssd',
  'i3',
  'i5',
  'processing',
  'power'],
 ['value', 'money', 'laptop', 'new', 'pentium', 'gold', 'processor', 'ssd'],
 ['laptop',
  'light.the',
  'processor',
  'fast',
  'ssd.i',
  'ubuntu',
  'wifi',
  'drivers',
  'available',
  'ubuntu.only',
  'downside',
  'display',
  'price.build',
  'quality',
  'sub',
  'optimal.overall',
  'fantastic',
  'deal'],
 ['amazing',
  'prime',
  'day',
  'sale',
  '18k',
  'first',
  'time',
  'user',
  'normal',
  'office',
  'work',
  'days',
  'superb',
  'aspects',
  'amazon'],
 ['laptop',
  'basic',
  'grade',
  'basic',
  'processor',
  'build',
  'quality',
  'basic',
  'worth',
  'money',
  'amazon',
  'pricing',
  'high',
  'worth',
  'price',
  'other',
  'ecommerce',
  'websites',
  'same',
  'model',
  'amd',
  'processor',
  'prices'],
 ['price',
  'rs',
  'price',
  'range',
  'best',
  'laptop',
  'internet',
  'excellent',
  'choice',
  'laptop',
  'windows',
  'os',
  'more',
  'best'],
 ['good',
  'product',
  'hp.latest',
  'cpu',
  'os',
  'ssd',
  'ddr4',
  'device',
  'note',
  'book',
  'secondary',
  'work',
  'device',
  'heavy',
  'user',
  'primary',
  'device',
  'students',
  'normal',
  'business',
  'persons'],
 ['good',
  'poor',
  'speed',
  'keys',
  'hard',
  'pre',
  'ms',
  'office',
  'extra',
  'overall',
  'old',
  'dell',
  'better',
  'one',
  'better',
  'performance',
  'reviews'],
 ['wise',
  'goodfor',
  'inch',
  'tabletbattery',
  'hr',
  'moderate',
  'usesome',
  'plastic',
  'niggles',
  'present',
  'need',
  'worrylaptop',
  'charger',
  'heavier',
  'laptopbootup',
  'time',
  'sec',
  'win',
  'extra',
  'gb',
  'micro',
  'sd'],
 ['laptop', 'slow', 'months', 'laptop', 'slow', 'slow', 'day'],
 ['laptop', 'office', 'amazon', 'service'],
 ['nice',
  'laptop',
  'compact',
  'excellent',
  'performance',
  'high',
  'battery',
  'backup',
  'giving',
  'feeding',
  'month'],
 ['excellent',
  'product',
  'product',
  'rs',
  '19,900/-',
  'thanks',
  'great',
  'indian',
  'festival',
  'sale',
  'only',
  'drawback',
  'lack',
  'cd',
  'deficiency',
  'external',
  'cd',
  'drive'],
 ['handy',
  'light',
  'weight',
  'lap',
  'adorable',
  'good',
  'presentations',
  'people',
  'move',
  'overall',
  'good',
  'experience'],
 ['doubt',
  'light',
  'weight',
  'laptop',
  'long',
  'battery',
  'life',
  'gb',
  'ssd',
  'system',
  'speed'],
 ['expectations',
  'terms',
  'speed',
  'form',
  'factor',
  'display',
  'quality',
  'it.i',
  'small',
  'issue',
  'power',
  'button',
  'small',
  'one',
  'sure',
  'power',
  'led',
  'indication',
  'light',
  'side',
  'one',
  'sideways'],
 ['satisfied',
  'excellent',
  'product',
  'speed',
  'good',
  'wise',
  'elegant',
  'light',
  'weight',
  'convinient',
  'last',
  'week.overall',
  'excellent',
  'product'],
 ['good',
  'deal.super',
  'boost',
  'productivity.instant',
  'app',
  'launches',
  'boot',
  'nvme',
  'down.massive',
  'bummer',
  'gaming',
  'mind.but',
  'best',
  'decisions'],
 ['piece', 'students', 'nice', 'decent', 'config', 'low', 'price'],
 ['laptop',
  'good',
  'days',
  'use',
  'hp',
  'motherboard.i',
  'warranty',
  'period'],
 ['fast',
  'booting',
  'crisp',
  'processing',
  'gb',
  'ssd',
  'device',
  'value',
  'money',
  'price',
  'responsive',
  'i3',
  'tb',
  'specification',
  'device',
  'fine',
  'light',
  'good'],
 ['hdd', 'slow', 'ssd', 'good', 'experience'],
 ['days',
  'happy',
  'decision',
  'worth',
  'daily',
  'domestic',
  'usage',
  'value',
  'money'],
 ['k', 'offer'],
 ['system', 'slow', 'drives', 'reboot', 'time', 'large', 'rest', 'best'],
 ['decent',
  'product',
  'generic',
  'purposes',
  'ssd',
  'quick',
  'responses',
  'evident',
  'games',
  'other',
  'heavy',
  'graphics',
  'works'],
 ['fast', 'booting', 'time', 'setting', 'process'],
 ['fast',
  'entry',
  'segment',
  'laptop',
  'hp',
  'ssd',
  'difference',
  'boot',
  'time',
  'processor',
  'latest',
  'on.good',
  'light',
  'work',
  'office',
  'work',
  'windows',
  'bliss'],
 ['good',
  'battery',
  'life',
  'best',
  'price',
  'much',
  'difference',
  'price',
  'range',
  'k',
  'laptops'],
 ['display',
  'quality',
  'life',
  'quality',
  'good',
  '4.5/5fast',
  'booting',
  'time',
  'good',
  'option'],
 ['nice',
  'product',
  'thing',
  'good',
  'display',
  'quality.performance',
  'amazing',
  'sound',
  'amazing',
  'graphics',
  'good',
  'battery',
  'backup',
  'good',
  'ultra',
  'portable',
  'windows'],
 ['business', 'purpose', 'amazing'],
 ['laptop',
  'amazon',
  'sale',
  'startup',
  'ssd',
  'light',
  'weight',
  'value',
  'money',
  'good',
  'browsing',
  'personal',
  'use',
  'product',
  'price'],
 ['good'],
 ['plzz',
  'genuine',
  'buyer',
  'laptop',
  'bcoz',
  'reasons',
  'speed',
  'sec',
  'n',
  'sec',
  'more'],
 ['g8', 'price', 'good', 'performance', 'i3', 'laptop'],
 ['positive', 'more', 'backlit', 'keyboard'],
 ['amazing',
  'laptop',
  'sexy',
  'n',
  'performance',
  'ssd',
  'performance',
  'supersonic'],
 ['lappy',
  'good',
  'little',
  'bit',
  'overpriced',
  'day',
  'day',
  'normal',
  'work'],
 ['fast', 'happy', 'purchase'],
 ['lot',
  'problem',
  'software',
  'slow',
  'downs',
  'files',
  'currupt',
  'requests',
  'matter',
  'resolve',
  'issue',
  'weeks'],
 ['amazing', 'laptop'],
 ['product', 'drives', 'product'],
 ['horizontal',
  'line',
  'lap',
  'top',
  'screen',
  'screen',
  'defective',
  'contact',
  'supplier',
  'arrange',
  'replacement',
  'lap',
  'top'],
 ['great',
  'ssd',
  'superfast',
  'display',
  'issue',
  'great',
  'simple',
  'home',
  'work',
  'use.lighter'],
 ['value', 'money', 'good', 'product', 'price'],
 ['microsoft', 'good'],
 ['useless',
  'laptop',
  'display',
  'poor',
  'letters',
  'article',
  'websites',
  'advice',
  'one'],
 ['good', 'laptop', 'gaming'],
 ['lovely',
  'laptop',
  'good',
  'specifications',
  'price',
  'basic',
  'computing',
  'needs',
  'discount',
  'less'],
 ['hp', 'laptop', 'good'],
 ['average', 'day', 'low', 'strength', 'adapter'],
 ['product',
  '20k',
  'thanks',
  'amazon',
  'handy',
  'compact',
  'gb',
  'ssd',
  'fast',
  'good',
  'battery',
  'life',
  'great',
  'buy',
  'normal',
  'user'],
 ['hp',
  'laptop',
  '14q',
  'cs0018tu',
  'gb',
  'ddr4',
  'ram',
  'gb',
  'ssd',
  'drive',
  'open',
  'windows',
  'home',
  'chocklate',
  'kyeboard',
  'good',
  'experience'],
 ['good', 'product', 'scratches', 'surface'],
 ['fantastic', 'product', 'range', 'type', 'excellent', 'work', 'laptop'],
 ['well.the', 'screen'],
 ['display',
  'good',
  'boot',
  'time',
  'awsome',
  'wrong',
  'specification',
  'usb',
  'port',
  'ports',
  'usb'],
 ['price', 'good.ssd', 'amazing'],
 ['good', 'performance.using', 'week', 'fast', 'delivery', 'fresh', 'product'],
 ['superb',
  'note',
  'book',
  'good',
  'looks',
  'light',
  'weight',
  'satisfactory',
  'performance',
  'best',
  'thing',
  '20k'],
 ['space'],
 ['smooth', 'day', 'day', 'task'],
 ['good', 'laptop', 'college', 'students.ssd', 'superfast'],
 ['thin', 'laptop', 'professional', 'use', 'smooth', 'fine'],
 ['good',
  'laptop',
  'decent',
  'performance',
  'compatible',
  'issues',
  'laptop',
  'days',
  'usage',
  'good',
  'go',
  'students'],
 ['reasonable', 'product', 'suitable', 'home', 'users'],
 ['less', 'storage'],
 ['best', 'laptop', 'range', 'good', 'featuresso', 'laptop', 'range'],
 ['good',
  'daily',
  'use',
  'light',
  'weight',
  'average',
  'processing',
  'speed',
  'okay'],
 ['worst', 'product', 'multiple', 'technical', 'flaws'],
 ['amazing', 'laptop', 'hpits', 'powerful', 'gb', 'ssdboot'],
 ['display', 'average', 'laptop', 'case', 'average', 'quality'],
 ['good'],
 ['laptop', 'same', 'amazon', 'website', 'photo'],
 ['screen', 'good', 'good', 'product', 'price', 'range'],
 ['value', 'money', 'due', 'solid', 'state', 'hard', 'drive', 'i3'],
 ['lightweight',
  'excellent',
  'screen',
  'quality',
  'good',
  'computing',
  'power',
  'personal',
  'laptop'],
 ['waste', 'laptop', 'foreverperformance', 'poweroff'],
 ['awesome', 'ditto'],
 ['booting', 'fast.i', 'happy', 'laptop', 'good', 'buy', 'home', 'use'],
 ['best', 'small', 'budget'],
 ['beast',
  'browsing',
  'light',
  'office',
  'work',
  'ssd',
  'charm',
  'boot',
  'time',
  'sec'],
 ['screen',
  'quality',
  'good',
  'amazing',
  'battery',
  'life',
  'weight',
  'right'],
 ['ms', 'office', 'download', 'google', 'chrome', 'normal', 'version'],
 ['average'],
 ['problematic', 'weeks', 'use', 'screen', 'vertical', 'line'],
 ['light', 'weight', 'value', 'money'],
 ['good', 'laptop', 'home', 'school', 'college', 'small', 'business', 'use'],
 ['good', 'customers', 'name', 'ms', 'office'],
 ['great', 'lightweight', 'laptop', 'college/', 'university'],
 ['hand', 'hard', 'drive'],
 ['good', 'price'],
 ['nice'],
 ['ok', 'normal', 'browisne', 'good'],
 ['average', 'laptop', 'average', 'price', 'average', 'use'],
 ['screen', 'quality'],
 ['worth', 'buying'],
 ['great'],
 ['initial', 'rating', 'detail'],
 ['good', 'performance'],
 ['laptop', 'great'],
 ['useful', 'laptop', 'students'],
 ['light', 'weight', 'nice', 'screen', 'good'],
 ['better'],
 ['best', 'laptop', 'price', 'range'],
 ['product', 'basic', 'use'],
 ['mind', 'purchase'],
 ['nyc'],
 ['excellent', 'product', 'value', 'money'],
 ['thought', 'great', 'deal'],
 ['product', 'ok', 'amazon', 'people', 'worst'],
 ['good', 'product', 'range'],
 [''],
 ['most', 'daily', 'tasks'],
 ['size', 'issue'],
 ['nice', 'laptop'],
 ['best', 'configurations', 'personal', 'use'],
 ['good', 'quality'],
 ['good', 'product'],
 ['ok', 'product'],
 ['doubts', 'amazing', 'products'],
 ['waste'],
 ['worth', 'money'],
 ['amazing', 'product', 'rs'],
 ['best', 'segment'],
 ['best', 'budget', 'laptop'],
 ['value', 'money', 'good', 'speed'],
 ['smooth'],
 [''],
 ['value', 'money'],
 ['great', 'product'],
 ['good', 'quality', 'products'],
 ['good'],
 ['slow', 'start'],
 ['good', 'laptop'],
 ['good'],
 ['report'],
 ['product', 'price', 'ssd', 'price', 'good'],
 ['product', 'expectations', 'price', 'point'],
 ['good',
  'product',
  'slim',
  'sexy',
  'laptop',
  'easy',
  'response',
  'good',
  '40s',
  'boot',
  'bad',
  'gaming'],
 ['laptop',
  'lot',
  'purchase',
  'price',
  'margin',
  'positive',
  'reviews',
  'advantage',
  'positive',
  'reviews',
  'demand',
  'amazon',
  'price',
  'margin',
  'worthy',
  'product',
  'product',
  'best',
  'average',
  'margin',
  'other',
  'product'],
 ['ms',
  'office',
  'product',
  'key',
  'activation',
  'model',
  'pre',
  '-',
  'loadedoffice',
  'pl',
  'product',
  'key',
  'pop',
  'message'],
 ['great',
  'hopes',
  'laptop',
  'laptop',
  'crucial',
  'business',
  'days',
  'receiving',
  'god',
  'long.i',
  'negative',
  'ratings',
  'garbage.bottomline',
  'cheap',
  'laptops',
  'for!i',
  'replace',
  'tb',
  'amazon',
  'item',
  'today',
  'kch',
  'nhi',
  'hager',
  'muhje',
  'tb',
  'mita',
  'h',
  'm',
  'uske',
  'islye',
  'aur',
  'paise',
  'dene',
  'k',
  'lye',
  'ready',
  'huamazon',
  'hp',
  'ki',
  'market',
  'm',
  'value',
  'khrb',
  'kr',
  'rha',
  'h.so',
  'ilsye',
  'dear',
  'sir',
  'kch',
  'krna',
  'pdega',
  'nhi',
  'ak',
  'time',
  'esa',
  'aayega',
  'jab',
  'hp',
  'koi',
  'nhi',
  'lena',
  'kyuki',
  'm',
  'phle',
  'bhi',
  'hp',
  'tha',
  'mere',
  'perilsye',
  'mne',
  'hp',
  'ko',
  'liyabut',
  'amazon',
  'esa',
  'nhi',
  'chahata',
  'ilsye',
  'sochna',
  'pdega'],
 ['laptop',
  '%',
  'sbi',
  'debit',
  'card',
  'discount',
  'varient',
  'gb',
  'ram,256',
  'gb',
  'ssd',
  'boot',
  'time',
  'boots',
  'sec',
  'problems',
  'stuffs.every',
  'thing',
  'good',
  'screen',
  'sunlight',
  'price',
  'good',
  'choice',
  'perfect'],
 ['nice',
  'product',
  'worth',
  'purchase',
  'cost',
  'better',
  'ms',
  'office',
  'permanent',
  'version',
  'part',
  'os.battery',
  'life',
  'ok',
  'screen',
  'resolution',
  'nice',
  'light',
  'weight',
  'working',
  'gamming',
  'experience',
  'normal',
  'office',
  'study',
  'purpose',
  'satisfied',
  'product'],
 ['laptop',
  'may',
  'saturday',
  'product',
  'early',
  'morning',
  'may',
  'monday',
  'kudos',
  'amazon',
  'delivery',
  'worried',
  'damages',
  'scratches',
  'laptop',
  'laptop',
  'review',
  'weeks',
  'review',
  'pros',
  'cons',
  'features',
  'laptop',
  'laptop',
  'light',
  'feather',
  'easy',
  'body',
  'slim',
  'metallic',
  'look',
  'premium',
  'feel.2',
  'boot',
  'time',
  'fast',
  'seconds',
  'homescreen',
  'password',
  'screen',
  'up.3',
  'gb',
  'ssd',
  'drive',
  'reason',
  'laptop.4',
  'touch',
  'brilliant',
  'responsive',
  'pen',
  'quick',
  'response',
  'designer',
  'pen',
  'benefit',
  'other',
  'utility',
  'paint',
  'multifunctioning',
  'smooth',
  'laptop',
  'application',
  'feature',
  'good',
  'tablet',
  'easily.7',
  'windows',
  'interface',
  'easy',
  'android',
  'games',
  'apps',
  'apps',
  'store.8',
  'usb',
  'type',
  'c',
  'usb',
  'hdmi',
  'sd',
  'card',
  'reader',
  'sides',
  'connectivity',
  'easy.9',
  'battery',
  'life',
  'good',
  'usage',
  'laptop',
  '%',
  'battery',
  'show',
  'hours',
  'need',
  'charger.10',
  'keyboard',
  'spacing',
  'short',
  'while',
  'main',
  'work',
  'content',
  'writing',
  'change',
  'typing',
  'speed.cons:1',
  'screen-',
  'screen',
  'fhd',
  '1080p',
  'videos',
  'full',
  'hd',
  'experience.2',
  'ips',
  'plane',
  'switching',
  'feature',
  'screen',
  'quality',
  'shifts',
  'slightest',
  'change',
  'screen',
  'angle',
  'video',
  'content',
  'slightest',
  'shift',
  'angel',
  'change',
  'contrast',
  'black',
  'levels',
  'comfortable',
  'experience',
  'volume',
  'fine',
  'loud',
  'audios',
  'videos',
  'large',
  'room',
  'full',
  'people',
  'good',
  'speaker',
  'entertainment.4',
  'laptop',
  'lot',
  'uncomfortable',
  'level',
  'laptop',
  'lap',
  'summers',
  'laptop',
  'front',
  'air',
  'conditioner',
  'little.5',
  'laptop',
  'sturdy',
  'feature',
  'multiple',
  'times',
  'saying)overall',
  'more',
  'pros',
  'cons',
  'laptop',
  'biggest',
  'minus',
  'point',
  'screen',
  'gb',
  'ssd',
  'heed',
  'screen',
  'resolution',
  'good',
  'buy',
  'entertainment',
  'work',
  'major',
  'concerns.this',
  'good',
  'laptop',
  '2-in-1',
  'laptop',
  'budget',
  '45k',
  'fhd',
  'display',
  'model',
  'same',
  'specs',
  'one',
  '101tu',
  'model',
  'few',
  'days'],
 ['sister',
  'freelancer',
  'look',
  'few',
  'hours',
  'comfortable',
  'writing',
  'overall',
  'accessibility',
  'texture',
  'look',
  'laptop',
  'premium',
  'touch',
  'screen',
  'quick',
  'tablet',
  'quick',
  'keyboards',
  'disabled',
  'don;t',
  'keyboards',
  'tablet.it',
  'fhd',
  'visuals',
  'good',
  'speed',
  'enjoyed.i',
  'laptop',
  'students',
  'freelancers',
  'artists',
  'writers',
  'good',
  'traveling.it',
  'lightweight',
  'cost',
  'high',
  'pen',
  'cool',
  'more',
  'months',
  'further.overall',
  'price',
  'brand',
  'specifications',
  'value',
  'money',
  'more',
  'specifications',
  'i5',
  'version',
  'gb',
  'ram',
  'version',
  'model',
  'cool'],
 ['preliminary',
  'review',
  'laptop',
  'day',
  'beautiful',
  'slim',
  'good',
  'tablet',
  'technology',
  'amazing',
  'pen',
  'good',
  'better',
  'screen',
  'guard',
  'touch',
  'pen',
  'screen',
  'first',
  'i3',
  'i5',
  'i7',
  'speed',
  'fine',
  'bunch',
  'software',
  'ssd',
  'hard',
  'disk',
  'boost',
  'gb',
  'ram',
  'stick',
  'i3',
  'performance',
  'good',
  'edit',
  'keyboard',
  'hardware',
  'ram',
  'bigger',
  'ssd',
  'difficult',
  'model',
  'x360',
  'hp',
  'laptops',
  'compact',
  'mobile',
  'phones',
  'battery',
  'other',
  'older',
  'hp',
  'laptops',
  'inconvenience',
  'people',
  'computer',
  'savvy',
  'laptops'],
 ['great',
  'deal',
  'charm',
  'skeptical',
  'good',
  'buy',
  'budget',
  '40k-50k',
  'corei3',
  '8th',
  'gen',
  'ms',
  'office',
  'windows',
  'degree',
  'tablet',
  'screen',
  'pen',
  'slowness',
  'review',
  'days',
  'use',
  'month'],
 ['first',
  'thing',
  '-performance',
  'machine',
  'same',
  'i3',
  'ssd',
  '-no',
  'complaints',
  'good',
  'looking',
  'laptop',
  'biggest',
  'letdown',
  'display',
  'laptop',
  'full',
  'hd',
  'display.this',
  'hd',
  'display',
  'images',
  'let',
  'display',
  'visible',
  'over.more',
  'glass',
  'display',
  'pathetic',
  'difficult',
  'time.i',
  'more',
  'it.update:-',
  'considerable',
  'time.my',
  'biggest',
  'complaint',
  'display',
  'annoying',
  'fhd',
  'laptop',
  'few',
  'bucks',
  'hp',
  'fhd',
  'price',
  'point.(i',
  'screen',
  'gd',
  'stylus',
  'case',
  'other',
  'customers',
  'samsung',
  'galaxy',
  'note',
  'owners',
  'stylus',
  'actual',
  'use',
  'minimal',
  'hp',
  'pen',
  'advantage'],
 ['satisfied',
  'laptop',
  'fine',
  'touch',
  'screen',
  'stylus',
  'pen',
  'excellent',
  'keyboard',
  'sleek',
  'video',
  'quality',
  'mark',
  'notes',
  'browsing',
  'fast',
  'prime',
  'day'],
 ['laptop',
  'fair',
  'deal',
  'usual',
  'amazon',
  'awesome',
  'cons.cons:1',
  'speaker',
  'tablet',
  'mode',
  'better',
  'placement',
  'speakers',
  'nice.2',
  'ram',
  'warranty.3',
  'pen',
  'aaaa',
  'batteries',
  'expensive',
  'packs',
  'time',
  'battery',
  'second',
  'i3',
  'laptop',
  'fan',
  'whole',
  'time.5',
  'type',
  'c',
  'port',
  'bummer',
  'power',
  'bank',
  'unlikely.6',
  'angles',
  'pros:1',
  'touch',
  'screen',
  'awesome.2',
  'best',
  'use',
  'case',
  'ms',
  'office',
  'work.3',
  'latency',
  'pen',
  'par',
  'apple',
  'pencil.4',
  'track',
  'pad',
  'windows',
  'precision',
  'drivers.5',
  'speakers',
  'good',
  'laptop',
  'mode.6',
  'ms',
  'office',
  'inlclude.overall',
  'worth'],
 ['issue',
  'activation',
  'office',
  'pleased',
  'feedback',
  'review',
  'able',
  'ms',
  'office',
  'ms',
  'installed',
  'usable',
  'rating',
  'star',
  'stars',
  'unit',
  'lightweight',
  'good',
  'value',
  'money',
  'gb',
  'ram',
  'bit',
  'insufficient',
  'purpose',
  'system',
  'documentation',
  'spreadsheets',
  'presentations',
  'pen',
  'earlier',
  'initial',
  'review',
  'above!!!by',
  'product',
  'details',
  'impression',
  'ms',
  'office',
  'part',
  'purchase',
  'representation',
  'misleading',
  'office',
  'product',
  'details',
  'this.note',
  'delivery',
  'last',
  'evening',
  'review',
  'case',
  'activation',
  'key',
  'seller',
  'same'],
 ['charm',
  'first',
  'day',
  'amazing',
  'lappy',
  'affordable',
  'price',
  'guys',
  'good',
  'mood',
  'mine'],
 ['best',
  'options',
  'student',
  'silent',
  'fast',
  'flash',
  'drive',
  'operation',
  'great',
  'buy',
  'external',
  'hp',
  'monitor',
  'usb',
  'keyboard',
  'mouse',
  'excellent',
  'desktop',
  'home',
  'portable',
  'laptop',
  'home',
  'legal',
  'windows-10',
  'ms',
  'office',
  'home',
  'student',
  'version',
  'more',
  'value',
  'proposition'],
 ['laptop',
  'available',
  'microsoft',
  'outlook',
  'unlicenced',
  'unable',
  'outlook',
  'everytime',
  'oultook',
  'mail',
  'process'],
 ['good',
  'deal',
  'exchange',
  'old',
  'laptop.it',
  'nice',
  'quality',
  'old',
  'laptop',
  'metal',
  'finish',
  'premium',
  'light',
  'weight',
  'sleek.boot',
  'time',
  'start',
  'time',
  'less',
  'sec',
  'ssd.display',
  'mukti',
  'gesture',
  'trackpad',
  'touchscreen',
  'pen',
  'useful',
  'speakers',
  'backup',
  'video',
  'streaming',
  'hours',
  'mild',
  'medium',
  'use',
  'least',
  'hours',
  'day',
  'single',
  'charge.genuine',
  'hp',
  'product',
  'website',
  'year',
  'warranty.ms',
  'office',
  'activation',
  'only.ssd',
  'storage',
  'available',
  'gbout',
  'gb',
  'ram',
  'most',
  'work',
  'lagging.cons',
  'display',
  'hd',
  'fhd',
  'ipsno',
  'keyboardno',
  'sensorother',
  'models',
  'available',
  'feature',
  '10k',
  'extra.major',
  'point',
  'ssd',
  'ms',
  'office',
  'convertible',
  'pen',
  'includedthis',
  'best',
  'model',
  'market',
  '30k'],
 ['fine',
  '@',
  'disappoiting',
  'company',
  'omit',
  'ms',
  'office',
  'outlook',
  'pen',
  'funtionality',
  'great.also',
  'mouse',
  'pad',
  'noise',
  'attempt',
  'replacement',
  'one',
  'request'],
 ['first',
  'touchscreen',
  'laptop',
  'apple',
  'products',
  'touchscreen',
  'satisfied',
  'look',
  'functionality',
  'battery'],
 ['good',
  'model',
  'medium',
  'level',
  'users',
  'product',
  'day',
  'actual',
  'date.booting',
  'speed',
  'good',
  'only',
  'thing',
  'product',
  'many',
  'apps',
  'touch',
  'average',
  'quality.got',
  'attractive',
  'price',
  'old',
  'model'],
 ['16th',
  'jul',
  'hp',
  'pavilion',
  'able',
  'followed',
  'instructions',
  'next',
  'day',
  'pin',
  'blank',
  'screen',
  'appearing.lets',
  'c',
  'help',
  'vl',
  'update'],
 ['primeday',
  'offer',
  'old',
  'laptop',
  'low',
  'price',
  'worth',
  'price',
  'fingerprint',
  'scanner',
  'able',
  'laptop',
  'hp',
  'ram',
  'capacity',
  'hdd',
  'capacity',
  'helpful'],
 ['average',
  'product',
  'dead',
  'pixels',
  'screen',
  'box',
  'hp',
  'support',
  'contact',
  'amazon',
  'amazon',
  'agent',
  'replacement',
  'one',
  'better',
  'manufacturers',
  'website',
  'amazon',
  'third',
  'party',
  'retailers',
  'case',
  'box',
  'issues',
  'resolution',
  'description',
  'hd',
  'screen',
  'colour',
  'dull',
  'looks',
  'non',
  'hd',
  'windows',
  'configuration',
  'setting',
  'hd',
  'screen',
  'amazon',
  'hp',
  'dissatisfaction'],
 ['amazing',
  'laptop',
  'fast',
  'touch',
  'good',
  'pen',
  'worth',
  'best',
  'laptop',
  'price.note',
  'issue',
  'battery',
  'near',
  'hp',
  'descent'],
 ['lightning', 'deal', 'rubbish'],
 ['wise',
  'wise',
  'good',
  'laptop',
  'external',
  'hard',
  'disc',
  'variant',
  'gb',
  'sata'],
 ['product',
  'days',
  'rest',
  'thing',
  'good',
  'battery',
  'backup',
  'bad',
  'start',
  'full',
  'battery',
  'hours',
  'worried',
  'line',
  'product',
  'battery',
  'life',
  'hours',
  'happy',
  'battery'],
 ['product',
  'exchange',
  'i3',
  'laptop',
  'fantastic.mcafee',
  'month',
  'expiry.rest',
  'windows',
  'ms',
  'office',
  'free',
  'fast',
  'response',
  'constraint',
  'gb',
  'ssd',
  'u',
  'amazon'],
 ['screen',
  'flexibility',
  'highlight',
  'available',
  'other',
  'brands',
  'well.screen',
  'quality',
  'good',
  'game',
  'picture',
  'better',
  'visible',
  'angles'],
 ['product',
  'details',
  'impression',
  'ms',
  'office',
  'part',
  'purchase',
  'representation',
  'misleading',
  'office',
  'office',
  'instructions',
  'reviews',
  'issue'],
 ['good', 'product', 'good', 'condition', 'backlit', 'keyboard'],
 ['bad',
  'review',
  'laptop',
  'awesome',
  'laptop',
  'most',
  'people',
  'touchscreen',
  'disadvantage',
  'laptop',
  'finominal',
  'great',
  'mine',
  'craft',
  'pc',
  'pc',
  'mode',
  'tab',
  'pocket',
  'edition',
  'best',
  'laptop',
  'time'],
 ['amazing',
  'service',
  'amazing',
  'delivery',
  'quality',
  'product',
  'best',
  'market',
  'price',
  'thanks'],
 ['good',
  'product',
  'touchpad',
  'slower',
  'side',
  'speed',
  'highest',
  'satisfied',
  'product'],
 ['product', 'condition'],
 ['damaged', 'product'],
 ['handy',
  'lapbook',
  'fast',
  'worthy.different',
  'kind',
  'usb',
  'ports',
  'available',
  'many',
  'devices',
  'windows',
  'office',
  'kind',
  'great'],
 ['good',
  'buy',
  'budget',
  'touch',
  'screen',
  'awesome',
  'stylus',
  'response',
  'battery',
  'life',
  'amazing',
  'screen',
  'little',
  'unstable',
  'vibrates',
  'fan',
  'worth'],
 ['broke',
  'poor',
  'quality',
  'services',
  'good',
  'laptop',
  'pathetic',
  'service',
  'amazon'],
 ['excellent', 'user', 'friendly'],
 ['best',
  'laptop',
  'budget',
  'category',
  'ssd',
  'drive',
  'touch',
  'screen',
  'i3',
  'processor',
  'light',
  'weight',
  'laptop'],
 ['lawyer',
  'usage',
  'reading',
  'research',
  'drafting',
  'happy',
  'way',
  'laptop',
  'first',
  'month',
  'usage'],
 ['keyboard',
  'screen',
  'laptop',
  'keyboard',
  'spacious',
  'laptop',
  'bends',
  'hassle',
  'challenge',
  'battery',
  'backup',
  'ok',
  'great'],
 ['screen', 'days', 'purchase.lets', 'guys', 'sad'],
 ['worried',
  'product.as',
  'date',
  'lap',
  'value',
  'worth',
  'money',
  'thankful',
  'amazon'],
 ['amazing', 'product'],
 ['product', 'x360', 'last', 'months', 'motherboard', 'available'],
 ['nice', 'cool', 'product'],
 ['product',
  'image',
  'model',
  'product',
  'finger',
  'print',
  'sensor',
  'model'],
 ['product',
  'backlit',
  'keyboard',
  'keyboard',
  'feature',
  'fraud',
  'amazon',
  'seller'],
 ['good', 'battery', 'life', 'fast', 'excellent', 'light', 'user'],
 ['worst', 'decision', 'heavy', 'looks', 'same', 'pictures'],
 ['good', 'product', 'delivery', 'time', 'quick'],
 ['good', 'portable', 'lalptop'],
 ['laptop', 'good', 'issues'],
 ['screen', 'quality', 'worse', 'worthy', 'product', 'price'],
 ['good', 'laptop'],
 ['battery', 'life', 'satisfactory'],
 ['everthing', 'great'],
 ['good', 'sleek'],
 ['good'],
 ['product', 'nice', '10th', 'gen', 'fhd'],
 ['performance',
  'ok',
  'audio',
  'output',
  'silent',
  'pc',
  'hp',
  'sound',
  'issue'],
 ['awsm', 'look', 'phon'],
 ['product', 'good'],
 ['worth', 'money'],
 ['price', 'features'],
 ['osm', 'great', 'feelings'],
 ['awesome', 'great', 'value', 'money'],
 ['price', 'awesome'],
 ['laptop', 'costly', 'slow', 'works', 'touch', 'quality', 'good'],
 ['good', 'choice'],
 ['lap', 'many', 'problems', 'time', 'right', 'buttons'],
 ['good', 'value', 'money', 'ssd', 'drive'],
 ['much', 'time', 'pc', 'file'],
 ['good', 'laptop', 'price', 'range'],
 ['full', 'hd', 'display', 'cherry', 'top'],
 ['full', 'hd', 'screen', 'ones', 'screen', 'pathetic'],
 ['good', 'product'],
 ['worth', 'money'],
 ['value', 'money'],
 ['touch', 'smooth', 'display', 'quality', 'good'],
 ['good', 'product', 'fast', 'delivery', 'satisfied'],
 ['awesome', 'speed', 'good', 'looks', 'overall', 'nice', 'deal'],
 ['resolution', 'great'],
 ['amazing'],
 ['worth', 'money'],
 ['bad', 'product', 'product'],
 ['excellant', 'product', 'hp'],
 ['nice', 'product', 'iam'],
 ['nice', 'producteasy', 'usesmart'],
 ['features'],
 ['best', 'laptop', 'price'],
 ['perfect', 'storage'],
 ['useful', 'price'],
 ['only', 'drawback', 'display'],
 ['good', 'product'],
 ['value', 'maney'],
 [''],
 ['best', 'product'],
 ['product'],
 ['nice', 'product', 'valuable'],
 ['effective'],
 [''],
 ['cool'],
 ['awesome', 'laptop'],
 ['good', 'buy'],
 ['laptop', 'good', 'specifications', 'price', 'touch', 'screen', 'pen'],
 ['cautionary',
  'tale',
  'laptop',
  'late',
  'feb',
  'service',
  'centre',
  'thrice',
  'third',
  'month',
  'motherboard',
  'june',
  'system',
  'min',
  'chrome',
  'ms',
  'word',
  'other',
  'hour',
  'hp',
  'people',
  'catchphrases',
  'sorry',
  'system',
  'that-',
  'ram',
  'system',
  'fault',
  'hp.moral',
  'story:1',
  'hp',
  'laptop2',
  'customer',
  'care',
  'person',
  'clue',
  'hp',
  'service.4',
  'touch',
  'x360',
  'gimmick',
  'fact',
  'machine',
  'hp'],
 ['hp',
  'lapotp',
  'june',
  'amazon',
  'problems',
  'start',
  'hp',
  'defects',
  'service',
  'km',
  'hp',
  'laptop',
  'warranty',
  'hp',
  'website',
  'laptop',
  'warranty',
  'hp',
  'laptops',
  'pcs',
  'hp',
  'warranty',
  'customer',
  'service',
  'center',
  'hp',
  'customer',
  'relation',
  'manager',
  'concept',
  'problem',
  'u',
  'r',
  'hp',
  'rpoduct',
  'repairs',
  'man',
  'only',
  'point',
  'contact',
  'cough',
  'money',
  'repairs',
  'blame',
  'customer.inferior',
  'quality',
  'material',
  'base',
  'panel',
  'hinges',
  'dell',
  'laptop',
  'self',
  'company',
  'dell',
  'excellent',
  'problem',
  'laptop',
  'hp',
  '3k',
  'u'],
 ['hp', 'best', 'laptop', 'ms', 'windows', 'gb', 'ssd', 'smooth'],
 ['laptop',
  'worst',
  'months',
  'laptop',
  'display',
  'support',
  'hp',
  'worst',
  'support',
  'hp'],
 ['osm',
  'yrr',
  'bahut',
  'zaberdast',
  'laptop',
  'hai',
  'high',
  'graphic',
  'game',
  'mai',
  'thoda',
  'lod',
  'padta',
  'hai',
  'yrr',
  'bahut',
  'stylish',
  'osm',
  'yrr',
  'laptop',
  'ke',
  'sath',
  'ese',
  'fold',
  'kare',
  'tablet',
  'bhi',
  'bana',
  'skte',
  'hai',
  'bahut',
  'badiya',
  'value',
  'money',
  'product',
  'good',
  'agar',
  'aap',
  'lena',
  'ke',
  'soch',
  'rhe',
  'ho',
  'jao',
  'le',
  'lo',
  'yrr',
  'kamal',
  'ka',
  'hai',
  'product',
  'hp',
  'bahut',
  'light',
  'whiegt',
  'hai'],
 ['worst', 'product.screen', "poor.don't"],
 ['low', 'sound', 'cheap', 'plastic', 'touchpad'],
 ['keybord', 'good', 'processor'],
 ['awesome', 'lapy', 'light', 'weight', 'decent', 'look'],
 [''],
 ['expectations',
  'nice',
  'laptop',
  'price',
  'worthy',
  'nice',
  'specifications'],
 ['able',
  'laptoit',
  'passwordis',
  'new',
  'laptop',
  'weekand',
  'passwordhow',
  'way'],
 ['disaster'],
 ['feature',
  'great',
  'laptop',
  'fast',
  'performance',
  'looks',
  'much',
  'value',
  'key',
  'board',
  'quick',
  'smooth',
  'function',
  'little',
  'heavier',
  'hp',
  'surprises',
  'innovation',
  'product',
  'little',
  'lesser',
  'previous',
  'one',
  'spectre'],
 ['fraud'],
 ['excellent', 'product', 'users', 'manual', 'pen', 'available'],
 ['light',
  'small',
  'laptop',
  'easy',
  'original',
  'microsoft',
  'os',
  'easy',
  'upgrade',
  'pen',
  'use',
  'fine',
  'cell',
  'boot',
  'quick',
  'product',
  'key',
  'ms',
  'office',
  'seller',
  'activation',
  'key.long',
  'term'],
 ['hours',
  'days',
  'weeks',
  'product',
  'technical',
  'stuff',
  'review',
  'helpful',
  'you.to',
  'honest',
  'scared',
  'hp',
  'good',
  'reputation',
  'review',
  'product',
  'detailed',
  'one',
  'diwali',
  'sale',
  'time',
  'purchase',
  'prepaid',
  'manner',
  'amazon',
  'cod',
  'products',
  'much',
  'return',
  'only',
  'replacement',
  'laptop',
  'yikes',
  'homework',
  'whole',
  'days',
  'basics',
  'laptop',
  'type',
  'ram',
  'processor',
  'battery',
  'strength',
  'lot',
  'one',
  'greatest',
  'value',
  'lowest',
  'price',
  'amazon',
  'laptop',
  'buying',
  'lot',
  'own',
  'various',
  'models',
  'one',
  'priorities).quality',
  'laptop',
  'silver',
  'textured',
  'lappy',
  'star',
  'keyboard',
  'issue',
  'few',
  'customers',
  'letters',
  'dark',
  'gray',
  'much',
  'contrast',
  'issue',
  'coz',
  'fast',
  'typist',
  'keyboard',
  'images',
  'keyboard',
  'review',
  'fast',
  'laptop',
  'initial',
  'setup',
  'few',
  'minutes',
  'lappy',
  'fast',
  'research',
  'scholar',
  'gaming',
  'tabs',
  'weeks',
  'months',
  'lappy',
  'gb',
  'ram',
  'tabs',
  'open',
  'star',
  'same',
  'way',
  'heavy',
  'usage',
  'few',
  'months',
  'usage',
  'rating',
  'accordingly.how',
  'battery',
  '%',
  '%',
  'videos',
  'browsing',
  'study',
  'stuff',
  'past',
  'hour',
  '%',
  'doable',
  'happy',
  'one',
  'coz',
  'particular',
  'specification',
  'related',
  'battery',
  'usage',
  'specifications',
  'battery',
  'mention',
  'tech',
  'friend',
  'upto',
  'hours',
  'regular',
  'browsing',
  'stars',
  'own',
  'jealousy',
  'laptop',
  'hp',
  'available',
  'touchscreen',
  'series',
  'same',
  'price',
  'claim',
  'hours',
  'battery',
  'life',
  'average',
  'upto',
  'max',
  'friend',
  'touchscreen',
  'reflective',
  'surface',
  'reflective',
  'super',
  'sensitive',
  'visible',
  'side',
  'angles',
  'peripheral',
  'position',
  'one',
  'stars',
  'laptops',
  'hours',
  'battery',
  'life',
  'available',
  'same',
  'price',
  'battery',
  'heavy',
  'screen',
  'only',
  'reason',
  'hesitant',
  'reflective',
  'surface',
  'screen',
  'absolute',
  'headaches',
  'eyes',
  'scared',
  'own',
  'reflection',
  'horror',
  'movie',
  'product',
  'matte',
  'screen',
  'screen',
  'skin',
  'guard',
  'screen',
  'specifications',
  'standard',
  'backlit',
  'screen',
  'available',
  'pleasant',
  'surprise',
  'matte',
  'screen',
  'glare',
  'low',
  'brightness',
  'laptop',
  'aesthetics',
  'greedy',
  'lcd',
  'whole',
  'screen',
  'fond',
  'black',
  'body',
  'screen',
  'tv',
  'laptop',
  'sense',
  'higher',
  'screen',
  'body',
  'ratio',
  'price',
  'this!sound',
  'sound',
  'better',
  'clear',
  'loud',
  'stars',
  'coz',
  'greedy',
  'girl',
  'louder',
  'better!ease',
  'windows',
  'tech',
  'friend',
  'windows',
  'coz',
  'hangs',
  'glad',
  'windows',
  'little',
  'nervous',
  'transition',
  'smooth',
  'easier',
  'access.ms',
  'office',
  'version',
  'phd',
  'scholar',
  'value',
  'willing',
  'version',
  'only',
  'office',
  'version',
  'version',
  'mini',
  'heart',
  'attack',
  'mins',
  'office',
  'version',
  'notification',
  'current',
  'version',
  'office',
  'home',
  'student',
  'version',
  'microsoft',
  'search',
  'feature',
  'star',
  'lappy',
  'week',
  'longer',
  'period',
  'time',
  'update',
  'case',
  'issue',
  'this.why',
  'online',
  'offline',
  'same',
  'price',
  'offer',
  'hp',
  'laptop',
  'same',
  'specifications',
  'gb',
  'ram',
  'free',
  'goodies',
  'headphones',
  'bags',
  'usb',
  'lights',
  'pendrives',
  'gb',
  'ram',
  'same',
  'price',
  'no',
  'brainer',
  'goodies',
  'inr',
  'new',
  'ram',
  'gb',
  'difference',
  'installation',
  'charges',
  'old',
  'processor',
  'least',
  'matter',
  'priorities',
  'goodies',
  'better',
  'processor',
  'aka',
  'speed.i',
  'issue',
  'laptop',
  'model',
  'keyboard',
  'number',
  'button',
  'icon',
  'inverted',
  'comma/',
  'button',
  'malfunction',
  'hardware',
  'icons',
  'small',
  'matter',
  'mind',
  'traditional',
  'keyboard',
  'style',
  'hour',
  'okay',
  'o.o',
  'first',
  'place',
  'strange',
  'weird',
  'hour',
  'laptop',
  'mine',
  'magic',
  'customer',
  'support',
  'amazon',
  'replacement',
  'lengthy',
  'review'],
 ['worst',
  'laptop',
  'month',
  'use',
  'battery',
  'mark',
  'keyboard',
  'light',
  'max',
  'hrs',
  'speed',
  'avg',
  'brother',
  'student',
  'u',
  'r',
  'professional',
  'worst',
  'laptop',
  'hp'],
 ['system', 'ms', 'office', 'trial', 'version'],
 ['packing',
  'worst',
  'parcel',
  'packing',
  'box',
  'amazon',
  'inside',
  'hp',
  'product',
  'packing',
  'good',
  'laptop',
  'nice'],
 ['month', 'issues', 'found.i'],
 ['good', 'normal', 'personal', 'use'],
 ['good'],
 ['laptop', 'good', 'little', 'slow'],
 ['good', 'quality', 'product'],
 ['laptop', 'awesome'],
 ['value',
  'mony',
  'good',
  'laptop.laptop',
  'battary',
  'laptop',
  'performance'],
 ['good', 'performance'],
 ['good',
  'perfect',
  'movie',
  'watching.sound',
  'good',
  'system',
  'slow',
  'first',
  'day',
  'tab',
  'long',
  'time',
  'system',
  'lot',
  'time',
  'hp',
  'customer',
  'support',
  'steps',
  'system',
  'check',
  'regular',
  'use'],
 ['display', 'quality', 'good', 'slow', 'processing'],
 ['value',
  'money',
  'purchase',
  'battery',
  'hours',
  'full',
  'hd',
  'display)boot',
  'time',
  '05to',
  'sec',
  'critical',
  'updates',
  'boot',
  'time',
  'performance',
  'windows',
  'daily',
  'use',
  "students.didn't",
  'performance',
  'games.overall',
  'performance'],
 ['good', 'little', 'bit', 'slow', 'performance', 'time'],
 ['good', 'product', 'good', 'battery', 'time', 'low'],
 ['lap',
  'sep',
  'morng.worst',
  'delivery',
  'experience',
  'amazon',
  'laptop',
  'amazing',
  'better',
  'expectations.amd',
  'awesome',
  'processor',
  'i3',
  'series.its',
  'good',
  'days',
  'performance',
  'smooth',
  'quick',
  'dell',
  'ryzen',
  'laptop',
  'pure',
  'graphical',
  'performance.if',
  'ur',
  'midrange',
  'gaming',
  'laptop',
  'best',
  'segment',
  'guys',
  'bad',
  'reviews',
  'confused.if',
  'u',
  'utilities',
  'full',
  'hardware',
  'software',
  'facilities',
  'thn',
  'ur',
  'gng',
  'this.ill',
  'additional',
  'informationpros:1',
  'amd',
  'ryzen',
  'processor',
  'better',
  'multi',
  'thread',
  'performance',
  'intel',
  'i3good',
  'gaming2',
  'performance',
  'highend',
  'game',
  'u',
  'upgrade',
  'ur',
  'ram',
  'gb',
  'pro3',
  'm2',
  'slot',
  'ssd4',
  'min',
  '%',
  'battery',
  'inbuilt5',
  'windows',
  'life',
  'time',
  'validity.6',
  'dvd',
  'drive',
  'smooth',
  'light',
  'weight',
  'kg8',
  'price',
  'segment.cons:1',
  'hd',
  'display',
  'fhd2',
  'battery',
  'last',
  'upto',
  'apprx',
  'heating',
  'little',
  'bit',
  'guy',
  'abt',
  'processor',
  'heating',
  'battery',
  'major',
  'issues',
  'amd.its',
  'default',
  'abt',
  'heating',
  'problems',
  'ryzen',
  'next',
  'level',
  'processor',
  'amd',
  'handling',
  'heat',
  'battery',
  'good',
  'other',
  'amd.laptop',
  'abt',
  'u'],
 ['laptop',
  'great',
  'value',
  'money',
  'old',
  'laptop',
  'laptop',
  '23k',
  't',
  'regret',
  'many',
  'upgrade',
  'options',
  'available',
  'laptop',
  'performance',
  'laptop',
  't',
  'other',
  'laptop',
  'nvme',
  'm.2',
  'ssd.so',
  'laptop',
  'last',
  'few',
  'weeks',
  'upgrade',
  'issues',
  'gaming',
  'photoshop',
  'many',
  'tabs',
  'opened.then',
  'green',
  'm.2',
  'gb',
  'ssd',
  'sata',
  'speed',
  'windows',
  'os',
  'ssd',
  'wd',
  'os',
  'clone',
  'tool',
  'available',
  'wd',
  'website',
  'significant',
  'improvement',
  'performance',
  'browsing',
  'photoshop',
  'cc',
  'speed',
  'gaming',
  'fps',
  'md',
  'computers',
  'rs',
  '3500.if',
  'budget',
  'samsung',
  'evo',
  'samsung',
  'evo',
  'low',
  'boot',
  'time',
  '10sec',
  'hdd',
  '26sec',
  'ssd',
  'gta',
  'ssd',
  'loading',
  'time',
  'playable',
  'lowest',
  'graphics',
  'settings.then',
  'ram',
  'gb',
  'ram',
  'os',
  'adata',
  'gb',
  'ddr4',
  'ram',
  'rs',
  'overall',
  'performance',
  'laptop',
  'ram',
  'dual',
  'channel.the',
  'laptop',
  'samsung',
  'm471a5244cb0-ctd',
  'ram',
  'capable',
  'laptop',
  'motherboard',
  '2400mhz',
  'help',
  'hp',
  'forum',
  'computer',
  'expert',
  'compatible',
  'ram',
  'laptop',
  'chance',
  'compatibility',
  'other',
  'ram',
  'other',
  'adata',
  'ad4s2400j4g17-r',
  'sure',
  'laptop',
  'technician',
  'ram',
  't',
  'support',
  't',
  'loose',
  'money.i',
  't',
  'support',
  'product.now',
  'gta',
  'average',
  '30fps',
  'low',
  'settings',
  'photoshop',
  'editing',
  'lag',
  'filters',
  'other',
  'effects.pros',
  'amd',
  'ryzen',
  'performance',
  'goodcan',
  'nvme',
  'm.2',
  'ssd',
  'samsung',
  'evo',
  'best)no',
  'issues.good',
  'windows',
  'homefast',
  'chargingcons',
  'battery',
  'life',
  'max',
  'preciseno',
  'keyboardspeakers',
  'averageram',
  'ssd',
  'slot',
  'accessible'],
 ['work',
  'laptop',
  'nice',
  'battery',
  'life',
  'excellent',
  'picture',
  'slight',
  'hesitation',
  'loading',
  'graphics',
  'power',
  'gaming',
  'laptop',
  'excellent',
  'work',
  'horse',
  'businessalso',
  '%',
  'cashback',
  'laptop',
  'vqr.in/83'],
 ['ram',
  'gb',
  'ram',
  'specification',
  'ddr4',
  'mhz',
  'sdram',
  'slots',
  'ram',
  'issue',
  'laptop',
  'easy',
  'hp',
  'laptops',
  'responsiveness',
  'laptop',
  'ram',
  'addition',
  'case',
  'further',
  'enhancement',
  'performance',
  'ssd',
  'm2',
  'slot',
  'available',
  'need',
  'picture',
  'ram'],
 ['pros',
  'vega',
  'graphicssupport',
  'gb',
  'm2',
  'slot',
  'osall',
  'portsvalue',
  'money',
  '22k',
  'discounts.con',
  'worst',
  'screen',
  'allvery',
  'slow',
  'hddexperience',
  'suggestion',
  'initial',
  'days',
  'performance',
  'ok',
  'mcafe',
  'windows',
  'defenderbest',
  'part',
  'addition',
  'ram',
  'm2',
  'slotso',
  '1st',
  'gb',
  'ram',
  'didn',
  't',
  'performance',
  'improvement.then',
  'gb',
  'green',
  'sata',
  'sad',
  'os',
  'voila',
  'os',
  '30k',
  'gb',
  'ram',
  'gb',
  'ssd',
  'tb',
  'hdd',
  'ryzen'],
 ['laptop',
  'notepad',
  'hours',
  'time',
  'laptop',
  'good',
  'amount',
  'time',
  'product',
  'hp',
  'amd',
  'ryzen',
  'laptop',
  'tb',
  'hdd',
  'windows',
  'home',
  'black/2.04',
  'kg',
  'hours',
  'long',
  'battery',
  'false',
  'writer',
  'basic',
  'needs',
  'applications',
  'laptop',
  'computer',
  'ms',
  'word',
  'ms',
  'excel',
  'paint',
  'google',
  'chrome',
  'firefox',
  'browser',
  'movies',
  'youtube',
  'games',
  'battery',
  'hours',
  'other',
  'features',
  'fast',
  'fast',
  'data',
  'connection',
  'websites',
  'blink',
  'sound',
  'quality',
  'great',
  'laptop',
  'few',
  'songs',
  'awesome',
  'experience',
  'friends',
  'laptop',
  'battery',
  'good',
  'option'],
 ['best',
  'thing',
  'laptop',
  'processor',
  'same',
  'i3',
  '8th',
  'gen',
  'cheap',
  'price',
  '3k',
  'extra',
  'gb',
  'ram',
  'module',
  'gb',
  'sufficient',
  'windows',
  'many',
  'laptop',
  'slow',
  'gb',
  'response',
  'more',
  'hang',
  'ups',
  'ssd',
  'wonders',
  'yet.edit',
  'ssd',
  'drive',
  'wd',
  'green',
  'gb',
  'm2',
  'drive',
  'rs',
  'amazon',
  'speed',
  'difference',
  'apparent',
  'test',
  'results',
  'system',
  'boots',
  'secs',
  'secs',
  'responses',
  'better',
  'reading',
  'speeds',
  'good',
  'great',
  'go',
  'blue',
  'samsung',
  'evo',
  'expansive',
  'speeds',
  'range',
  '500mb',
  's',
  'green',
  'budget',
  'users',
  'satisfied',
  'performance',
  'price',
  'paid.edit',
  'many',
  'battery',
  'backup',
  'moderate',
  'brightness',
  'hours',
  'max',
  'wifi',
  'moderate',
  'works',
  'movies(not',
  'ultra',
  'resolution',
  'upto',
  '1080p',
  '720p',
  'backup',
  'hours',
  'word',
  'excel',
  'backup',
  'hours',
  'wifi',
  'lot',
  'battery'],
 ['guys',
  'laptop',
  'good',
  'gb',
  'ram',
  'ssd',
  'slot',
  'lappy',
  'ssd',
  'amazon',
  'available',
  'rs',
  'version',
  'ssd',
  'lappy.i',
  'cash',
  'worth',
  'it.very',
  '.touch',
  'pad',
  'last',
  'full',
  'browsing',
  'good'],
 ['delivery',
  'quick',
  'good',
  'price',
  'amazon',
  'sale',
  '.the',
  'laptop',
  'good',
  'able',
  'laptop',
  'hand',
  'great',
  'average',
  'more',
  '.the',
  'processor',
  'amd',
  'ryzen',
  'u',
  'good',
  'comparable',
  'intel',
  'i3',
  '7th',
  'gen',
  '.4',
  'gb',
  'ram',
  'enough',
  'basic',
  'tasks',
  'gb',
  'planning',
  'more',
  'performance',
  'great',
  'additional',
  'bonus',
  'm2',
  'slot',
  'ssd',
  'ssd',
  'ur',
  'tb',
  'hdd',
  'windows',
  'ssd',
  'magic',
  'speed',
  '.one',
  'thing',
  'laptop',
  'sound',
  'low',
  'other',
  'standards',
  'sound',
  'cracks',
  'high',
  'pitch',
  'voices',
  've',
  'drivers',
  'sound',
  'settings',
  'use',
  'noticeable',
  'laptop.if',
  'ur',
  'upgradable',
  'laptop',
  'good',
  'processor',
  'budget',
  'go',
  'sale',
  'k',
  'budget',
  'ssd',
  'atleast',
  'ram',
  'significant',
  'speed',
  'boost',
  'games'],
 ['more',
  'month',
  'review',
  'hp',
  'model',
  'windows',
  'windows',
  'error',
  'acpi',
  'support',
  'contact',
  'bios',
  'vendor',
  'bios',
  'upto',
  'date',
  'vendor).for',
  'linux',
  'environment',
  'wifi',
  'seperate',
  'wifi',
  'adaptor',
  'ubuntu',
  'kali',
  'linux',
  'linux',
  'environment',
  'graphics',
  '250+mb',
  'video',
  'ram',
  'worst',
  'part',
  'o',
  'adobe',
  'programs',
  'battery',
  'backup',
  'full',
  'movie',
  '%',
  '%',
  'camera',
  'quality',
  'good',
  'display',
  'lot',
  'friendly',
  'graphics',
  'driver',
  'problem',
  'supplier',
  'feedback',
  'bsod',
  'error',
  'applications',
  'graphics',
  'application',
  'problem',
  'manufacturer',
  'defect',
  'windows',
  'google',
  'much',
  'bloatware',
  'battery',
  'performance',
  'dark',
  'mode',
  'available',
  'personalization',
  'rating',
  'medium',
  'type',
  'users',
  'normal',
  'users'],
 ['product',
  'mark',
  'amazon',
  'bcoz',
  'problem',
  'switch',
  'abd',
  'bateery',
  'backup',
  'worse',
  'new',
  'laptop',
  'abd',
  'battery',
  'backup',
  'hour'],
 ['laptop',
  'update',
  'window',
  'updates',
  'charm',
  'superbb',
  'speed',
  'samsung',
  'evo',
  'ssd',
  'gb',
  'crucial',
  'ram'],
 ['amazing',
  'laptop',
  'beautiful',
  'sleek',
  'stylish',
  'bulky',
  'performance',
  'fast',
  'remarkable',
  'battery',
  'backup',
  'commendable',
  'crystal',
  'clear',
  'display',
  'audio',
  'speaker',
  'rich',
  'bass',
  'hd',
  'clear',
  'sound.processor',
  'graphics',
  'magnificent',
  'overall',
  'hp',
  'wonderful',
  'product',
  'thanks',
  'hp',
  'side',
  'thanks'],
 ['price',
  'great',
  'laptop',
  'price',
  'hp',
  '.',
  'full',
  'stars',
  'better',
  'deal',
  'win10',
  'festive',
  'sale',
  'great',
  'price',
  'performance',
  'new',
  'amd',
  'ryzen',
  'processors',
  'vega',
  'graphics',
  'match',
  'intel',
  'counterparts',
  'performance',
  'watt',
  'idea',
  'hp',
  'other',
  'manufacturers',
  'performance',
  'win10',
  'bloatware',
  'ancient',
  'tb',
  'hdd',
  'little',
  'more',
  'gb',
  'sdd',
  'better',
  'stars',
  'sdd',
  'sdd',
  'hddthe',
  'worst',
  'screen',
  't',
  'worst',
  'screen',
  'life',
  'year',
  'old',
  'vaio',
  'vgn',
  'n31m',
  'w',
  'awesome',
  'screen',
  'reason',
  'laptop',
  'display',
  'bit',
  'colour',
  'rbg',
  'model',
  'stars',
  'screen',
  'external',
  'monitor'],
 ['screen',
  'great',
  '.yet',
  'additional',
  'gb',
  'ram',
  'bloat',
  'ware',
  'firefox',
  'chrome',
  'explorer',
  'few',
  'tweaks',
  'laptop',
  'hanging',
  'battery',
  'hours',
  'recharging',
  'fast',
  'oct',
  'sale',
  '@',
  'sbi',
  'card',
  'instant',
  'discount',
  'rs',
  'amazon',
  'cash',
  'price',
  'laptop',
  'better',
  'i3',
  'laptops'],
 ['laptop',
  'oct',
  'oct',
  'oct.so',
  'day',
  'delivery',
  'fine',
  'problem.next',
  'packaging',
  'poor',
  'plastic',
  'air',
  'bubbles',
  'wrapping',
  'laptop',
  'rain',
  'wet',
  'wooried',
  'laptop',
  'thanks',
  'hp',
  'laptop',
  'value',
  'fir',
  'money',
  'discounts',
  'best',
  'device',
  'range.sound',
  'bit',
  'low',
  'low',
  'ram',
  'additional',
  'gb',
  'ram',
  'beast.display',
  'heating',
  'issues',
  'satisfied'],
 ['price',
  'range',
  'hp',
  'good',
  'budget',
  'laptop',
  'games',
  'regular',
  'basis',
  'ram',
  'gb',
  'better',
  'extra',
  'gb',
  'hanging',
  'issue',
  'others',
  'editing',
  'work',
  'auto',
  'cad',
  'game',
  'battle',
  'field',
  'bit',
  'problem',
  'battery',
  'doesnot',
  'more',
  'heavy',
  'heavy',
  'use',
  'hrs',
  'screen',
  'awesome',
  'hp',
  'service',
  'good',
  'inbuilt',
  'microsoft',
  'office',
  'microsoft',
  'awesome',
  'use',
  'heavy',
  'games',
  'office',
  'work'],
 ['laptop',
  'past',
  'months',
  'warranty',
  'period',
  'response',
  'amazon',
  'horrible',
  'service',
  'toll',
  'lines',
  'landline',
  'service'],
 ['gb',
  'nvme',
  'ssd',
  'gb',
  'ram',
  'good',
  'upgrade',
  'laptop',
  'seconds',
  'price',
  'point',
  'gaming',
  'decent',
  'fps',
  'modern',
  'combat',
  'battery',
  'backup',
  'upto',
  'hours',
  'hours',
  'other',
  'fine',
  'laptop',
  'light',
  'weight'],
 ['ryzen',
  'good',
  'windows',
  'ms',
  'office',
  'nice',
  'silver',
  'look',
  'attractive',
  'kb',
  'mouse',
  'display',
  'cheap',
  'angles',
  'good',
  'little',
  'bit',
  '4th',
  'generation',
  'processors',
  'battery',
  'life',
  'average',
  'gb',
  'stick',
  'performance',
  'performance',
  'ssd',
  'm.2',
  'bus',
  'overall',
  'processor',
  'better',
  'i3',
  '7th',
  'generation',
  'gpu',
  'weak',
  'nvidia',
  'mx110.review',
  'months',
  'port',
  'good',
  'sata',
  'm.2',
  'ssd',
  'laptop',
  'charm',
  'lags',
  'dual',
  'core',
  'ryzen',
  'laptop',
  'm.2',
  'windows10',
  'ssd',
  'tb',
  'internal',
  'hdd',
  'storage'],
 ['build',
  'quality',
  'category',
  'budget',
  'laptop',
  'notebook+no',
  'heating',
  'issues',
  'fingers',
  'heating',
  'issue',
  'other',
  'reviews',
  'purchase)+display',
  'color',
  'reproduction',
  'good+touchpad',
  'response',
  'good.+',
  'excellent',
  'amazon',
  'customer',
  'service',
  'replacement',
  'week)cons:-',
  'first',
  'laptop',
  'issue',
  'battery',
  'backup',
  '2hrs30mins',
  'replacement',
  'laptop',
  'amazon',
  'customer',
  'service',
  '4hrs30mins',
  'backup',
  'way',
  'upto',
  '13hrs',
  'battery',
  'backup"-',
  'system',
  'slower',
  'antivirus',
  'software'],
 ['future',
  'generation',
  'ryzen',
  'processor',
  'advantageos',
  'vega',
  'graphics',
  'mhz',
  'ram',
  'ghz',
  'processors',
  'tb',
  'hdd',
  'slot',
  'available',
  'upgrade',
  'optane',
  'memory',
  'extra',
  'speed',
  'system',
  'value',
  'moneyconsdual',
  'corecheap',
  'plastic',
  'material'],
 ['wise',
  'excellent',
  'wise',
  'extraordinary',
  'life',
  'time',
  'inbuilt',
  'window',
  'camera',
  'quality',
  'usual',
  'others',
  'competitors',
  'speed',
  'usual',
  'gb',
  'ram',
  'much',
  'fact',
  'specification',
  'overall',
  'value',
  'money',
  'good',
  'product'],
 ['value',
  'money',
  'laptop',
  'hp',
  'deals',
  '25k',
  'festival',
  'deals',
  'price',
  'slow',
  'minutes',
  'windows',
  'rivews',
  'suggestions',
  'additional',
  'gb',
  'ram',
  'gb',
  'ssd',
  'installation',
  'process',
  'youtube)now',
  'booting',
  'windows',
  'better',
  'good',
  'deal',
  'rest',
  'money',
  'ram',
  'ssd',
  '30k',
  'laptop',
  'i5',
  'notebooks',
  'thanks'],
 ['pros',
  'premium',
  'look',
  'lightweight',
  'ryzen',
  'lower',
  'pricecons',
  'battery',
  'removable',
  'liitle',
  'gb',
  'ram',
  'mcaffe',
  'ms',
  'office',
  'available',
  'days',
  'free',
  'trial'],
 ['net',
  'light',
  'satisfied',
  'product.rest',
  'doubts',
  'amd',
  'one',
  'deal',
  'clincher',
  'festival',
  'price',
  'point.prostotal',
  'value',
  'money',
  'ports',
  'available',
  'dvd',
  'rwthe',
  'ryzen',
  'good',
  'problems',
  'that-',
  'comparable',
  'i5',
  'imho',
  'videos',
  'games',
  'smoothly4',
  'gb',
  'ram',
  'enough-',
  'less',
  'w10the',
  'key',
  'board',
  'touchpad',
  'convinient',
  'loud',
  'backup',
  '2.5hrs',
  'cell',
  'onlyslow',
  'bootup-',
  'windows',
  'maybelot',
  'bloatware',
  'pay(ygwup)plain',
  'jane',
  'looksthe',
  'screen',
  'resolution',
  'poor-',
  'hdkeyboard',
  'easy',
  'night/',
  'low',
  'lightsuggestions',
  'upgradego',
  'ssd',
  '-120',
  'gb',
  'amazon',
  'boost',
  'gb',
  'replacement',
  'light',
  'behind!all',
  'loaptop',
  'web',
  'weekend',
  'office',
  'work',
  'games',
  'budget',
  'laptop'],
 ['laptop',
  'sis',
  'birthday',
  'battery',
  'dead',
  'experience',
  'laptop!!1.amd',
  'good',
  'light',
  'gaming',
  'editing',
  'browsing',
  'movies',
  'online',
  'backup:-',
  'hour',
  'battery',
  'backup.document',
  'editing',
  'video',
  'editing',
  'almost1:30',
  'hr',
  'browsing',
  'hr',
  'last',
  'online',
  'movies',
  'hr',
  'movies',
  'battery',
  'life',
  'hr',
  'laptop',
  'hour',
  'battery',
  'backup.3:-display',
  'main',
  'con',
  'laptop',
  'ok',
  'type',
  'display',
  'sound',
  'output',
  'machine',
  'good',
  'dfx',
  'enhancer',
  'dfx',
  'enhancer',
  'sound',
  'output',
  'great.5:-',
  'performance:-over',
  'laptop',
  'ssd',
  'samsung',
  'evo',
  'evo',
  'better',
  'performance',
  'more',
  'gb',
  'more',
  'ram(1',
  'extra',
  'ram',
  'slot',
  'available).i',
  '8=16gb)crucial',
  'ram',
  'coz',
  'system',
  'dual',
  'channel',
  'ram.after',
  'upgrade',
  'laptop',
  'boot',
  'time',
  'minute',
  'sec',
  'gaming',
  'experience',
  'laptop',
  'good',
  'pubg',
  'cs',
  'fortnite',
  'farcry',
  'battlefield',
  '1,rocket',
  'leage',
  'combat',
  'overall',
  'rating',
  'month',
  'laptop',
  'battery',
  'dead',
  'hp',
  'service',
  'complaint',
  'register',
  '10th',
  'technician',
  'same',
  'excuse',
  'same',
  'time',
  'sir',
  'problem',
  'days',
  'more',
  'days',
  'pics',
  'hp',
  'product',
  'able',
  'services',
  'hyderabad',
  'metro',
  'city',
  'hp',
  'product',
  'guy',
  'good',
  'hp',
  'service',
  'example',
  'hp',
  'service'],
 ['laptop',
  'steal',
  'great',
  'indian',
  'sale',
  'discount',
  'return',
  'old',
  'laptop',
  'decent',
  'performance',
  'ram',
  'gb',
  'worth',
  'rupee',
  'able',
  'graphic',
  'intense',
  'game',
  'gta',
  'v',
  'lag',
  'frame',
  'drops',
  'student',
  'laptop',
  'browsing',
  'general',
  'usage',
  'sale',
  'better',
  'offer'],
 ['inspite',
  'ram',
  'gb',
  'speed',
  'machine',
  'laptop',
  'hour',
  'slow',
  'display',
  'new',
  'tab',
  'time',
  'problem',
  'lid',
  'open',
  'position',
  'everytime',
  'machine',
  'sleep',
  'mode',
  'battery',
  'amazon',
  'such',
  'junk',
  'laptop',
  'replacement',
  'window',
  'waste',
  'money'],
 ['laptop',
  'fine',
  'up.when',
  'laptop',
  'cpu',
  'fan',
  'full',
  'speed',
  'first',
  'moment',
  'screen',
  'black',
  'bios',
  'warranty',
  'hp',
  'website',
  'months',
  'warranty',
  'year',
  'seeler',
  'defective',
  'product',
  'disappointed'],
 ['harrowing',
  'time',
  'handling',
  'manufacturer',
  'seller',
  'problems',
  'warranty',
  'issues',
  'day',
  'product',
  'order',
  'seller',
  'information',
  'warranty',
  'days',
  'warranty',
  'update.battery',
  'poor',
  'display',
  'fine',
  'ram',
  'decent',
  's',
  'l',
  'w',
  'gaming',
  'earlier',
  'reviews.hp',
  'customer',
  'care',
  'race',
  'worst',
  'performance',
  'race',
  'side',
  'ifb',
  'samsung',
  'morphy',
  'richards',
  'others'],
 ['17th',
  'october',
  'same',
  'week',
  'faulty',
  'hp',
  'technitian',
  'un',
  'able',
  'fault',
  'legal',
  'steps'],
 ['youtube',
  'channel',
  'trip',
  'days',
  'good',
  'laptop',
  'video',
  'reason',
  'days',
  'lot',
  'mall',
  'amazon',
  'budget',
  'good',
  'extra',
  'money',
  'it.good',
  'fast',
  'delivery',
  'amazon',
  'next',
  'day',
  'amazon',
  'prime',
  'laptop',
  'battery',
  'charging',
  'fast',
  'good',
  'normal',
  'work',
  'typing',
  'browsing',
  'editing',
  'software',
  'good',
  'slow',
  'course',
  '28k',
  'laptop',
  'min',
  'video',
  'mins.one',
  'suggestion',
  'extra',
  'gb',
  'ram',
  'good',
  'sure',
  'latest',
  'editing',
  'software'],
 ['24k',
  'lenovo',
  'z500',
  'i5',
  'dedicated',
  'graphics',
  'card',
  'laptop',
  'benchmark',
  'sure',
  'better',
  'choice',
  'i3',
  'laptops',
  'time.4',
  'gb',
  'ram',
  'enough',
  'lag',
  'free',
  'performance',
  'extra',
  'gb',
  'ram',
  'gb',
  'ssd',
  'programs',
  'photoshop',
  'android',
  'studio',
  'hdd',
  'least',
  'minute',
  'lenovo',
  'competition',
  'old',
  'i5',
  'rig',
  'ryzen',
  'i5',
  'dbattery',
  'backup',
  'hrs',
  'real',
  'world',
  'use',
  'hrs',
  'web',
  'browsing+programming+video',
  'playback',
  'range.the',
  'screen',
  'fhd',
  'price',
  'good',
  'gamer',
  'refresh',
  'rate',
  'use',
  'screen',
  'bad',
  'keyboard',
  'good',
  'good',
  'programmers.speakers',
  'decent',
  'good',
  'bad.m.2',
  'slot',
  'big',
  'plus',
  'ssd',
  'thing',
  'it.ports',
  'plenty',
  'ports',
  'usb',
  'ports',
  'bit',
  'tight',
  'addition',
  'usb',
  'type',
  'c',
  'good'],
 ['review',
  'months',
  'use.brought',
  'great',
  'indian',
  'festival',
  'sale',
  'arch',
  'linux',
  'gnome',
  '3.32pros:1',
  'official',
  'windows',
  'home',
  'lifetime',
  'license2',
  'battery',
  'backup',
  'good',
  'hrs',
  'continuous',
  'usage.3',
  'speaker',
  'sound',
  'quality',
  'loudness',
  'good.4',
  'apu',
  'compute',
  'intensive',
  'programs',
  'it.5',
  'keys',
  'good',
  'noise.6',
  'camera',
  'quality',
  'good.7',
  'm.2',
  'ssd',
  'sata',
  'disk.cons:1',
  'ram',
  'gb',
  'windows',
  'gb',
  'standby.2',
  'hard',
  'disk',
  'slow',
  'boot',
  'time',
  'long.3',
  'f.16',
  'bios',
  'update',
  'support',
  'several',
  'linux',
  'distros.4',
  'new',
  'vega',
  'graphics',
  'hard',
  'several',
  'linux',
  'distro.in',
  'opinion',
  'laptop',
  'gaming',
  'limited',
  'vram.one',
  'boot',
  'time',
  'os',
  'ssd.games',
  'ram',
  'upgrade'],
 ['laptop',
  '22k',
  'old',
  'sony',
  'viao',
  'value',
  '5.5k',
  'most',
  'laptop',
  'extra',
  'ram',
  'm.2',
  'slots',
  'both.i',
  'claim',
  'battery',
  'life',
  'hours',
  'naive',
  'hours',
  'continuous',
  'use',
  'fair',
  'enough.day',
  'day',
  'apps',
  'ms',
  'word',
  'ppt',
  'pdf',
  'readers',
  'old',
  'sony',
  'slow',
  'apps.however',
  'only',
  'gripe',
  'horrendous',
  'display',
  'screen',
  'resolution',
  'angle',
  'pathetic',
  'hd',
  'stuffs',
  'laptop',
  'screen',
  'immersive',
  'reflective',
  'budget',
  'option',
  'ok',
  'option',
  'ssd',
  'ram'],
 ['day',
  'day',
  'task',
  'upgrades',
  'ssd',
  'boot',
  'time.2',
  'gb',
  'ram',
  'lag.with',
  'upgrades',
  'xps',
  'macbook.if',
  'requirement',
  'gaming',
  'videos',
  'ryzen',
  'vega',
  'better',
  'i3'],
 ['decent',
  'laptop',
  'month',
  'use',
  'point',
  'files',
  'week',
  'external',
  'hard',
  'disk',
  'laptop',
  'empty',
  'possible',
  'long',
  'life',
  'kind',
  'laptop',
  'os',
  'laptop',
  'problem',
  'week',
  'usual',
  'slow',
  'self'],
 ['slow',
  'google',
  'chrome',
  'time',
  'unable',
  'windows',
  'laptop.even',
  'replacement',
  'money',
  'asus',
  'lenovo',
  'hp'],
 ['complete',
  'laptop',
  'options',
  'good',
  'machine',
  'other',
  'laptops',
  'price.hardrive',
  'slow',
  'blevive',
  'years',
  'old',
  'harddrive',
  'worls.boot',
  'extreamy',
  'slow',
  'minute',
  'av',
  'hp',
  'product',
  'software',
  'preinstalled)copy',
  'process',
  'slow.good',
  'part',
  'm.2',
  'slot',
  'hardrive',
  'os',
  'more',
  'times',
  'difference',
  'boot',
  'time',
  'own',
  'disk.second',
  'good',
  'thing',
  'memory',
  'slots',
  'gb',
  'memory',
  'small',
  'problem',
  'memory',
  'ram',
  '2666mhz',
  'higher',
  'specification',
  'memory',
  'compatible',
  'memory.rest',
  'fine'],
 ['laptop',
  'lot',
  'time',
  'problem',
  'processor',
  'on1',
  'june',
  'warranty',
  'warranty',
  'period'],
 ['laptop',
  '14th',
  '19th',
  'average',
  'speed',
  'delivery',
  'laptop',
  'top',
  'notch',
  'sky',
  'expectations',
  'best',
  'laptop',
  'cpu',
  'performance',
  'miles',
  'intel',
  'uhd',
  '620/630',
  'gpu',
  'performance.2-handles',
  'regular',
  'work',
  'video',
  'youtube',
  'stutter',
  'day',
  'day',
  'purpose.3-it',
  'well(at',
  '720p',
  'gb',
  'ram',
  'gb',
  'ram',
  'low',
  'recent',
  'games',
  'gb',
  'ram',
  'adequate',
  'windows',
  'nowdays',
  'gaming',
  'good',
  'stutter',
  'free',
  'performance',
  'atleast',
  'extra',
  'gb',
  'ram.4-i',
  'emulation',
  'purpose',
  'good',
  'performance',
  'pcsx2',
  'cemu',
  'cpu',
  'intensive',
  'intel',
  'pcsx2',
  'cemu',
  'lowest',
  'settings',
  'intel',
  'gpu',
  'cemu',
  'retro',
  'games',
  'limited',
  'budget',
  'best',
  'budget',
  'option.5-',
  'very',
  'premium',
  'laptop',
  'black',
  'usb',
  'ports',
  'fast',
  'transfer',
  'm.2',
  'port(which',
  'faster',
  'hdd',
  'storage',
  'os',
  'm.2',
  'serious',
  'boost',
  'performance',
  'most',
  'budget',
  'laptop',
  'facility.8-metallic',
  'finish',
  'keyboard',
  'premium',
  'look.9-pretty',
  'loud',
  'speakers10-no',
  'heating(gets',
  'little',
  'warm',
  'full',
  'screen12-not',
  'heavy-',
  'kg',
  'considering',
  'inch',
  'screen.13-charger',
  'light',
  'weight',
  'important',
  'hour',
  'back.cons-1-pathetic',
  'webcam',
  'most',
  'laptop',
  'thing',
  'manufacturers',
  'good',
  'webcam',
  'nowdays',
  'megapixel',
  'cam',
  'mobiles',
  'good',
  'webcam',
  'laptop?2-not',
  'great',
  'angles',
  'screen',
  'screen',
  'reflective',
  'problem',
  'day',
  'time',
  'lots',
  'reflections',
  'distraction.3-',
  'problem',
  'unit',
  'usb',
  'ports',
  'tight',
  'usb',
  'cable',
  'etc.4-not',
  'soo',
  'great',
  'battery',
  'life',
  'description',
  'most',
  'economic',
  'way',
  'possible',
  'hours',
  'battery',
  'life',
  'better',
  'normal',
  'laptop',
  'less',
  'hrs',
  'battery',
  'life',
  'future',
  'optimization',
  'bios',
  'driver.5-wobbling',
  'screen',
  'hand.overall',
  'fantastic',
  'laptop',
  'price',
  'happy',
  'expectations'],
 ['couple',
  'weeks',
  'laptop',
  'good',
  'touch',
  'wood',
  'years',
  'mac',
  'hp',
  'first',
  'time',
  'windows',
  'impressed',
  'performance',
  'good',
  'thing',
  'ram',
  'tech',
  'geek',
  'way',
  'ram',
  'laptop',
  'lag',
  'way',
  'ryzen',
  'processor',
  'nice',
  'slick',
  'sure',
  'device',
  'drivers',
  'order',
  'sure',
  'device',
  'improvements',
  'good',
  'work',
  'gaming',
  'web',
  'development',
  'battery',
  'decent',
  'lightweight',
  'lappy'],
 ['less',
  'video',
  'ram',
  'adobe',
  'photoshop',
  'cc',
  'enough',
  'vram',
  'pure',
  'performance',
  'asphalt',
  'midrange',
  'games',
  'high',
  'range',
  'decent',
  'gaming',
  'performance',
  'battery',
  'life',
  'network',
  'heavy',
  'great',
  'indian',
  'festival',
  'sale',
  'rate',
  'awsome',
  'im',
  'sad',
  'vram',
  'issue'],
 ['month',
  'good',
  'disk',
  'slower',
  'side',
  'wd',
  'double',
  'notch',
  'ssd',
  'gb',
  'kingston',
  'charm',
  'total',
  '30k',
  'total',
  'inside',
  'picture',
  'help'],
 ['laptop',
  '24th',
  'dec',
  'christmas',
  'morning!i',
  'performance',
  'slower',
  'side',
  'gb',
  'ram',
  'surprised',
  'fast',
  'gb',
  'ram',
  'total',
  'better',
  'is.will',
  'green',
  'm.2',
  'ssd',
  'os',
  'performance.having',
  'laptop',
  'cause',
  'box',
  'great',
  'good',
  'value',
  'money',
  'upgradeable',
  'other',
  'laptops',
  'category',
  'price',
  'point.amd',
  'rocks'],
 ['good',
  'looking',
  'laptop',
  'price',
  'ryzen',
  'onboard.also',
  'windows',
  'ms',
  'office',
  'included.performance',
  'wise',
  'acceptable',
  'price',
  'point',
  'day',
  'day',
  'tasks',
  'minimal',
  'hiccups.upgrading',
  'extra',
  'ram',
  'ssd',
  'better',
  'performance',
  'battery',
  'average',
  'okay',
  'price',
  'point',
  'hours',
  'moderate',
  'usage.display',
  'antiglare',
  'strain',
  'eyes',
  'headaches',
  'prolonged',
  'sessions.keyboard',
  'tactile',
  'placements',
  'keys',
  'pub',
  'g',
  'lite',
  'match',
  'playable',
  'buttery',
  'smooth',
  'performance',
  'ram',
  'gb',
  'help.dual',
  'speakers',
  'loud',
  'closed',
  'room',
  'volume',
  'headphone',
  'jack',
  'amazing.overall',
  'solid',
  'offering',
  'current',
  'price',
  'rs',
  'discount',
  'sales',
  'killer',
  '6k',
  'ssd',
  'higher',
  'ram',
  'diwali',
  'time',
  'second',
  'thoughts'],
 ['high',
  'expectations',
  'good',
  'reviews',
  'terrible',
  'first',
  'thing',
  'display',
  'bad',
  'hd',
  'most.the',
  'pages',
  'pixelate',
  'display',
  'people',
  'eighties',
  'steve',
  'jobs',
  'such',
  'visioneries',
  'product',
  'stuck',
  'damn',
  'ok',
  'years',
  'days',
  'replacement',
  'criteria',
  'guys',
  'amazon',
  'second',
  'problem',
  'time',
  'keys',
  'keyboard',
  'hardware',
  'issue',
  'amazon',
  'drivers',
  'hp',
  'site',
  'hardware',
  'issue',
  'softwares',
  'support',
  'drivers',
  'improvement.my',
  'question',
  'amazon',
  'account',
  'more',
  'years',
  'amazon',
  'beginning',
  'india'],
 ['reviews',
  'slow',
  'build',
  'compaq',
  'xp',
  'os',
  'mb',
  'ram',
  'image',
  'file',
  'millisecond',
  'one',
  'gb',
  'ram',
  'seconds',
  'xp',
  'os',
  'cd',
  'size',
  'less',
  'mb',
  'one',
  'security',
  'update',
  'gb',
  'days',
  'operating',
  'systems',
  'heavier',
  'slower',
  'heavy',
  'protection',
  'mechanisms',
  'computer',
  'user',
  'technical',
  'expert',
  'ram',
  'gb',
  'less',
  'laptop',
  'good',
  'buy',
  'battery',
  'upto',
  'hours',
  'mc',
  'afee',
  'anti',
  'virus',
  'month',
  'free',
  'year',
  'device',
  'option',
  'win',
  'lifetime',
  'validity"usb',
  'ports',
  'such',
  'simple',
  'factor',
  'unnoticed',
  'hp',
  'feedback',
  'complaints',
  'usb',
  'ports',
  'laptops',
  'years',
  'left',
  'side',
  'laptop',
  'usb',
  'ports',
  'otg',
  'sandisk',
  'flash',
  'drives',
  'same',
  'time',
  'first',
  'entry',
  'second',
  'flash',
  'drive',
  'usb',
  'ports',
  'matter',
  'concern',
  'millions',
  'users',
  'designers',
  'usb',
  'ports',
  'atleast',
  'inches.make',
  'sure',
  'option',
  'software',
  'microsoft',
  'store',
  'unauthorized',
  'program',
  'microsoft',
  'store',
  'more',
  'programs',
  'stall',
  'slow',
  'laptop',
  'background',
  'days',
  'level',
  'minutes',
  'time',
  'seconds',
  'system',
  'force',
  'power',
  'button',
  'laptop',
  'programs',
  'microsoft',
  'store',
  'system',
  'workable',
  'wrong',
  'mcafee',
  'anti',
  'virus',
  'program',
  'strong',
  'reason',
  'hp',
  'mcafee',
  'anti',
  'virus.there',
  'light',
  'indication',
  'laptop',
  'keyboard',
  'caps',
  'button',
  'mute',
  'button',
  'lap',
  'days',
  'people',
  'preoccupied',
  'absent',
  'minded',
  'lap',
  'screen',
  'display',
  'blank',
  'few',
  'minutes',
  'idle',
  'period',
  'right',
  'light',
  'glowing',
  'lap',
  'good',
  'reason',
  'light',
  'keyboard',
  'spacebar',
  'better',
  'laptops'],
 ['worst',
  'laptop',
  'life.please',
  'new',
  'mins',
  'bad',
  'aspect',
  'good',
  'ms',
  'office',
  'use',
  'useless',
  'laptop',
  'amazon',
  'laptop',
  'drivers',
  'software',
  'amazon',
  'agents',
  'laptop',
  'slow',
  'laptop',
  'times',
  'day'],
 ['first',
  'day',
  'review',
  'slow',
  'startup',
  'hour',
  'initial',
  'slowness',
  'apps',
  'settings',
  'usual.good',
  'timely',
  'delivery',
  'amazon.will',
  'use',
  'days',
  'days',
  'slowness',
  'lot',
  'time',
  'certain',
  'basic',
  'tasks',
  'ex',
  'below1',
  'right',
  'click',
  'desktop',
  'new',
  'submenu',
  'seconds2',
  'multiple',
  'browser',
  'tabs',
  'chrome',
  'system',
  'slow3',
  'settings',
  'tab',
  'secs',
  'open.overall',
  'satisfied',
  'performancethe',
  'positive',
  'battery',
  'update',
  'intermittent',
  'disconnection',
  'issue',
  '-after',
  'time',
  'star',
  'option',
  'star',
  'disappointed',
  'hp',
  '7th',
  'laptop',
  'life',
  'worst',
  'price',
  'less',
  'quality',
  'laptop',
  'slow',
  'minutes',
  'google',
  'chrome.not'],
 ['useless',
  'laptop',
  'good',
  'tabs',
  'chrome',
  'low',
  'graphic',
  'trading',
  'charts',
  'good',
  'word',
  'processor',
  'word',
  'documents',
  'much',
  'time',
  'mistake',
  'budget',
  'money',
  'budget',
  'laptop',
  'better',
  'configuration',
  'more',
  'emi',
  'payback'],
 ['laptop',
  'good',
  'dead',
  'slow',
  'ram',
  'g',
  'enogh.hp',
  'ram',
  'normal',
  'normal',
  'use',
  'disk',
  'write',
  'coach',
  'uninstallatio',
  'virus',
  'software',
  'laptop',
  'laptop',
  'day',
  'day',
  'upgrade',
  'gb',
  'wil',
  'help',
  'laptop',
  'normal'],
 ['product', 'much', 'a.', 'gaming', 'laptopand', 'bright'],
 ['blogger',
  'honest',
  'one',
  'jot',
  'first',
  'laptop',
  'last',
  'bad',
  'experience',
  'amd',
  'high',
  'speed',
  'many',
  'other',
  'positive',
  'points',
  'manufacturing',
  'issue',
  'noop',
  'laptop',
  'processesor',
  'worst',
  'screen',
  'lags',
  'hangs',
  'several',
  'minutes',
  'computer',
  'start',
  'menu',
  'sec',
  '3rd',
  'party',
  'app',
  'freezes',
  'pc',
  'bluetooth',
  'device',
  'ready',
  'power',
  'button',
  'minutes',
  'pc',
  'cursor',
  'freez',
  'power',
  'button',
  'help',
  'amazon',
  'technicians',
  'hp',
  'technicians',
  'number',
  'points',
  'problems',
  'unnamed',
  'problems',
  'accross',
  'computer',
  'u',
  'points',
  'regret',
  'ryzen',
  'amd',
  'intel',
  'cores'],
 ['worst',
  'product',
  'da',
  'drivers',
  'laptop',
  'slow',
  'major',
  'thing',
  'dot',
  'display',
  'major',
  'problem',
  'display',
  'quality',
  'bad',
  'touchpad',
  'hp'],
 ['star',
  'minutes',
  'professional',
  'usage',
  'browser',
  'ms',
  'word',
  'videos',
  'music',
  'much',
  'time.upgrading',
  'grandpa',
  'age',
  'upgrading',
  'panel',
  'core',
  'duo',
  'starts',
  'work',
  'laptops',
  'endorse',
  'hrs',
  'battery',
  'big',
  'trap.such',
  'big',
  'international',
  'company',
  'hp',
  'brand',
  'market',
  'customer',
  'sake',
  'junks',
  'troubling',
  'other',
  'laptops',
  'range',
  '15k',
  'satisfied',
  'valuable',
  'time',
  'junk'],
 ['disappointing',
  'hp',
  'laptop',
  'hard',
  'disk',
  'year',
  'laptop',
  'usage',
  'minimalthis',
  'product',
  'problem',
  'hard',
  'disk',
  'year',
  'purchase',
  'disappointing',
  'inner',
  'boards',
  'laptop',
  'old',
  'boards',
  'hardware',
  'repair',
  'person',
  'new',
  'brand',
  'device',
  'amazon',
  'laptop',
  'warranty',
  'november',
  'date',
  'purchase',
  'november',
  'warranty',
  'september',
  'hp',
  'company',
  'miss',
  'match',
  'warranty'],
 ['speed', 'slow', 'battery', 'life', 'short.amazon', 'product'],
 ['registration',
  'hp',
  'site',
  'months',
  'warranty',
  'year',
  'product',
  'hp',
  'website',
  'months',
  'strange'],
 ['good',
  'laptop',
  'budget',
  'useless',
  'ssd',
  'upgrade',
  'expansion',
  'hangs',
  'mild',
  'browsing',
  'light',
  'multitasking',
  'good',
  'thing',
  'ssd',
  'slot',
  'dual',
  'channel',
  'ram',
  'expansion',
  'update',
  'samsung',
  'evo',
  'rs',
  'adata',
  'ddr4',
  'ram',
  'rs1599',
  'amazon',
  'laptop',
  'breeze',
  'boot',
  'time',
  'sec',
  'minuetes',
  'loading',
  'time',
  'quick',
  'ram',
  'expansion',
  'ssd',
  'laptop',
  'useless',
  'weight',
  'best',
  'budget',
  'segment'],
 ['most',
  'points',
  'importance',
  'ram',
  'gb',
  'laptop',
  'useful',
  'os',
  'gb',
  'noteworthy',
  'more',
  'asus',
  'laptop',
  'same',
  'day',
  'intel',
  'p',
  'battery',
  'life',
  'usage',
  'better',
  'price',
  'point',
  'same',
  'os',
  'gb',
  'ram',
  'hdd',
  'benefit',
  'laptop',
  'other',
  'laptop',
  'usage',
  'usual',
  'browsing',
  'movies',
  'bit',
  'office',
  'work',
  'ssh',
  'terminals',
  'c',
  'programming',
  'benefit',
  'gaming',
  'evident',
  'better',
  'crash.overall',
  'warranty',
  'support',
  'good',
  'hp',
  'support',
  'problem.i',
  'guess',
  'imperative',
  'warranty',
  'thanks'],
 ['laptop',
  'sale',
  '22k',
  'discounts',
  'good',
  'value',
  'money',
  'product',
  'regular',
  'everyday',
  'use',
  'heavy',
  'computing',
  'gaming).mcafee',
  'lot',
  'laptops',
  'days',
  'lot',
  'cpu',
  'disk',
  'utilization',
  'laptop',
  'slow',
  'laggy',
  'mcafee',
  'alternative',
  'eset',
  'removable',
  'battery',
  'most',
  'conventional',
  'laptops',
  'unscrew',
  'entire',
  'base',
  'battery',
  'other',
  'components',
  'ram',
  'hdd',
  'battery',
  'user',
  'replaceable',
  'base',
  'panel',
  'few',
  'days.also',
  'ram',
  'unable',
  'exact',
  'ram',
  'spec',
  'bios',
  'speccy',
  'brand',
  'name',
  'base',
  'access',
  'hardware',
  'it.definitely',
  'better',
  'gigs',
  'ram',
  'ssd'],
 ['laptop',
  'diwali',
  'sale',
  'more',
  'month',
  'complete',
  'value',
  'money.amd',
  'ryzen',
  'processor',
  'better',
  'intel',
  'core',
  'i3.i',
  'ram',
  'gb',
  'processes',
  'fast',
  'gb',
  'ram',
  'performance',
  'good).another',
  'advantage',
  'availability',
  'ssd',
  'slot',
  'other',
  'laptop',
  'range',
  'provision.overall',
  'laptop'],
 ['beautiful',
  'product',
  'hp',
  'love',
  'device',
  'first',
  'day',
  'light',
  'weight',
  'specs',
  'front',
  'decent',
  'processor',
  'ryzen',
  'graphics',
  'driver',
  'games',
  'high',
  'end',
  'good',
  'laptop',
  'engineering',
  'students',
  'general',
  'purpose',
  'daily',
  'use',
  'slot',
  'm.2',
  'drive',
  'future',
  'ram',
  'gb',
  'b',
  '8gb',
  'product',
  'fantastic',
  'price'],
 ['laptop',
  'good',
  'gb',
  'ram',
  'better',
  'performance',
  'extra',
  'hdd',
  'slot',
  'fyi',
  'surprising',
  'laptop',
  'high',
  'fps',
  'dota',
  'good',
  'normal',
  'battery',
  'life(4',
  'hrs',
  'normal',
  'weight'],
 ['product',
  'need',
  'cheap',
  'best',
  'laptop',
  'product',
  'cheap',
  'worst',
  'product',
  'better',
  'laptops',
  'respective',
  'stores',
  'product',
  'actual',
  'price',
  'laptop',
  'old',
  'model',
  'e2',
  'series',
  'money',
  'offline'],
 ['happy',
  'machine',
  'fear',
  'heating',
  'issue',
  'processor',
  'multi',
  'little',
  'longer',
  'duration',
  'hopeful',
  'problem',
  'longer',
  'run.its',
  'performance',
  'equivalent',
  'i3',
  'graphical',
  'performance',
  'medium',
  'load',
  'gaming',
  'i3',
  'processor',
  'heating',
  'big',
  'time',
  'problem',
  'multi',
  'games',
  'movies',
  'videos',
  'long',
  'time',
  'heat',
  'experience',
  'weird',
  'problem',
  'much',
  'heat',
  'weird',
  'sound',
  'few',
  'minutes',
  'restarted.battery',
  'life',
  'good',
  'other',
  'hp',
  'machines',
  'claim',
  'larger',
  'efficient',
  'battery',
  'life',
  'page',
  'true'],
 ['laptop',
  'great',
  'indian',
  'sale',
  'delivery',
  'ram',
  'gb',
  'win10',
  'sluggish',
  'out.i',
  'games',
  'low',
  'settings.1',
  'pubg',
  'mobile',
  'emulator',
  'fps',
  'csgo',
  'fifa',
  'fortnite',
  'gta',
  'rocket',
  'league',
  'fps',
  '907.dota',
  'fps',
  'dirt',
  'rally',
  '100this',
  'wellbattery',
  'fastand',
  'drains',
  'games',
  'long',
  'backupdisplay',
  'quality',
  'okayspeakers',
  'okoverall',
  'good',
  'package',
  '22k'],
 ['good',
  'laptop',
  'price',
  'rupee',
  'amazon',
  'cashbacks',
  'final',
  'price',
  'rupees',
  'good',
  'ms',
  'office',
  'browsing',
  'good',
  'programming',
  'heavy',
  'editor',
  'visual',
  'studio',
  'light',
  'weight',
  'battery',
  'backup',
  'hours',
  'medium',
  'brightness',
  'gaming'],
 ['laptop',
  'cheap',
  'ryzen',
  'processor',
  'mid',
  '-',
  'range',
  'optimum',
  'laptop',
  'work',
  'daily',
  'use',
  'photoshop',
  'effects',
  'microsoft',
  'windows',
  'lagging',
  'more',
  'sodimm',
  'gb',
  'total',
  'work',
  'other',
  'work',
  'distributin',
  'threads',
  'work',
  'awesome',
  'cpu.as',
  'games',
  'good',
  'graphics',
  'part',
  'effects',
  'old',
  'laptop',
  'thankx',
  'hp',
  'thankx',
  'seller',
  'price'],
 ['good', 'product', 'good', 'pricing', 'sound', 'quality', 'high', 'good'],
 ['laptop',
  'moderate',
  'gamer',
  'product',
  'rog',
  'level',
  'gaming',
  'killer',
  'gaming',
  'rig',
  '26k',
  'bespoke',
  'custom',
  'pc',
  'fund',
  'thst',
  'able',
  'years',
  'few',
  'houses',
  'minecraft',
  'terraria',
  'trackpad',
  'responsive',
  'typing',
  'enjoyable.windows',
  'updates',
  'features',
  'better',
  'win7',
  'it.overall',
  'solid',
  'starter',
  'typist',
  'laptop',
  'actual',
  'graphics',
  'card',
  'gaming'],
 ['handy',
  'light',
  'weight',
  'basic',
  'purposes',
  'laptop',
  'wouldn',
  't',
  'recommend',
  'gaming',
  'ryzen',
  'multi',
  '-',
  'multiple',
  'applications',
  'simultaneously.out',
  'box',
  'warranty',
  'months',
  'hp',
  'warranty',
  'year.ms',
  'office',
  'trial',
  'version.decent',
  'battery',
  'life',
  'typical',
  'laptop',
  'display',
  'good',
  'value',
  'money',
  'buy'],
 ['guys',
  'days',
  'consecutive',
  'usage',
  'review.what',
  'product',
  'dislike.pros',
  'cons',
  'generic',
  'purpose',
  'learning',
  'education',
  'coding',
  'manual',
  'small',
  'businesses',
  'laptop',
  'sufficient',
  'terms',
  'build',
  'quality',
  'premium',
  'feeling',
  'glossier',
  'look',
  'jet',
  'black',
  'laptop.2',
  'wide',
  'screen',
  'less',
  'bezels',
  'hepatic',
  'feeling',
  'videos',
  'youtube',
  'other',
  'social',
  'media',
  'bright',
  'colorful',
  'eye',
  'output',
  'movies.3',
  'laptop',
  'apps',
  'lot',
  'apps',
  'free',
  'most',
  'usable',
  'necessary',
  'apps',
  'daily',
  'usage',
  'microsoft',
  'edge',
  'web',
  'browser',
  'fast',
  'responsive',
  'firefox',
  'much',
  'data.cons',
  'battery',
  'life',
  'less',
  'hours',
  'charge',
  'thing',
  'good',
  'charging',
  'time',
  'charge',
  'thanks',
  'fast',
  'charging.2',
  'graphics',
  'ok',
  'material.3',
  'many',
  'updates',
  'windows',
  'hotspot',
  'data',
  'hour.overall',
  'good',
  'stylish',
  'looking',
  'laptop.i',
  'budget',
  'less',
  '30k'],
 ['excellent',
  'product',
  'range',
  'window',
  'decent',
  'gb',
  'ram',
  'upto',
  'tb',
  'hardisk',
  'processors',
  'nice',
  'light',
  'weight',
  'supercoo',
  'smart',
  'easy',
  'many',
  'products',
  'range',
  'decision',
  'product',
  'nice',
  'product',
  'amazon',
  'hp'],
 ['better', 'i5'],
 ['25k',
  'months',
  'issues',
  'ram',
  'slow',
  'price',
  'laptop',
  'worth',
  'it.i',
  'browsing',
  'other',
  'daily',
  'display',
  'nice',
  'big',
  'speakers',
  'loud',
  'video',
  'calls',
  'clear',
  'satisfied',
  'purchase.if',
  'worth',
  'section'],
 ['value',
  'money',
  'laptop',
  'price',
  'range',
  'best',
  'normal',
  'use',
  'documentation',
  'inbuilt',
  'windows',
  'nice',
  'product',
  'thanx',
  'rs',
  'amazon',
  'balance'],
 ['weeki',
  'normal',
  'ms',
  'office',
  'little',
  'entertainment.pros-',
  'value',
  'money',
  '27kgenuine',
  'win',
  'anglebattery',
  'charge',
  'fastscope',
  'upgrade',
  'u',
  'want(ram',
  'ssd',
  'video',
  'editing',
  'port',
  'dvd',
  'writergood',
  'normal',
  'student',
  'usecons-',
  'price',
  'thing',
  'keys',
  'possible',
  'price'],
 ['problem',
  'laptop',
  'terms',
  'usb',
  'device',
  'battery',
  'issue',
  'laptop',
  'other',
  'laptop',
  'payment',
  'additional',
  'warranty',
  'card'],
 ['pros',
  'display',
  'goodspeaker',
  'output',
  'weightbattery',
  'backup',
  'okaygood',
  'hddcons',
  'heating',
  'issues',
  'lot',
  'time',
  'windowssuggestions',
  'windows',
  'gb',
  'ram'],
 ['laptop',
  'slow',
  'issues',
  'first',
  'weeks',
  'case',
  'return',
  'window',
  'laptops',
  'restarts',
  'couple',
  'times',
  'day',
  'customer',
  'care',
  'team',
  'unable',
  'process',
  'hp',
  'warranty',
  'clause',
  'painful',
  'days+',
  'required',
  'support',
  'product',
  'ardent',
  'hp',
  'fan',
  'products'],
 ['laptop',
  'great',
  'item',
  'keyboard',
  'design',
  'poor',
  'silver',
  'keys',
  'grey',
  'lettering',
  'invisible',
  'function',
  'keys',
  'miniscule',
  'font',
  'grey',
  'font',
  'regular',
  'designer',
  'holiday',
  'keyboard',
  'stars',
  'huge',
  'factor',
  'efficient',
  'usability',
  'light',
  'keyboard',
  'keys',
  'machine',
  'great'],
 ['recommendable',
  'slow',
  'aspects',
  'system.five',
  'minutes',
  'half',
  'hour',
  'approx'],
 ['great',
  'laptop',
  'price',
  'features',
  'amazing.design',
  'good',
  'sleek',
  'processor',
  'good',
  'amazon',
  'sale',
  'good',
  'price',
  'value',
  'money',
  'happy'],
 ['worst',
  'product',
  'lot',
  'iron',
  'box',
  'windows',
  'compatible',
  'month',
  'boot',
  'error',
  'battery',
  'less',
  'product',
  'intel',
  'store'],
 ['product',
  'ok',
  'speaker',
  'day',
  'basic',
  'defect',
  'non',
  'booting',
  'laptop',
  '1st',
  'amazon',
  'new',
  'speaker',
  'issue'],
 ['worse',
  'laptop',
  'old',
  'acer',
  'd270',
  'mini',
  'laptop',
  'intel',
  'atom',
  'processor',
  'piece',
  'garbage',
  'laptop',
  'tabs',
  'browser',
  'apps',
  'seconds',
  'dont',
  'buy',
  'ryzen',
  'slower',
  'intel',
  'atom',
  'processor',
  'vega',
  'graphic',
  'configuration',
  'useful'],
 ['screen',
  'quality',
  'good',
  'different',
  'angles',
  'straight',
  'view',
  'lights',
  'keypad',
  'low',
  'lit',
  'rooms',
  'slow',
  'ample',
  'ram',
  'memory',
  'space'],
 ['product',
  'same',
  'ms',
  'office',
  'activation',
  'issues',
  'seller',
  'helpful',
  'issues',
  'happy',
  'product.thanks',
  'amazon',
  'thanks',
  'genuine',
  'original'],
 ['update',
  'alright',
  'next',
  'update',
  'smooth',
  'butter',
  'step',
  'wise',
  'alterations',
  'laptop.1.uninstall',
  'mcafee',
  'windows',
  'defender',
  'capable',
  'normal',
  'threats',
  'malicious',
  'sites',
  'user',
  'case',
  'avg',
  'pretty',
  'light',
  'ram2',
  'control',
  'center',
  'windows',
  'update',
  'updates',
  'restarts',
  'boot',
  'ups',
  'further',
  'update',
  'available',
  'hp',
  'assistant',
  'drivers',
  'laptop',
  'hours',
  'time',
  'necessary.3',
  'task',
  'manager',
  'disable',
  'microsoft',
  'drive',
  'etc.4',
  'task',
  'manager',
  'view',
  'tab',
  'refresh',
  'speed',
  'highest.5',
  'start',
  'bar',
  'computer/',
  'windows',
  'management',
  'processor',
  'speed',
  '%',
  'battery',
  'ac',
  'power.after',
  'laptop',
  'boot',
  'nice',
  'sec',
  'lag',
  'multiple',
  'windows',
  'videos',
  'heavy',
  'word/',
  'excel',
  'rating',
  'star',
  'now11',
  'grt',
  'pdt',
  'much',
  'comparison',
  'i3',
  'ane',
  'i5',
  'amazon',
  'engineer',
  'visit',
  'days',
  'wht',
  'days'],
 ['amd',
  'robust',
  'ryzen',
  'latest',
  'development',
  'speed',
  'screen',
  'spectacular',
  'rugged',
  'body',
  'high',
  'aesthetics'],
 ['25k',
  'great',
  'build',
  'gud',
  'display',
  'decent',
  'processor',
  'light',
  'gaming',
  'bag',
  'only',
  'downside',
  '25k',
  'great',
  'buy'],
 ['time',
  'charging',
  'high',
  'emblem',
  'razen',
  'radeon',
  'laptop',
  'previous',
  'customer',
  'matter',
  'first',
  'day',
  'time',
  'folder',
  'videos',
  'time'],
 ['best', 'laptop', '30k'],
 ['amazing',
  'laptop',
  'price',
  'range',
  'upgrades',
  'bonus',
  'fir',
  'general',
  'use',
  'one',
  'more',
  'gb',
  'ram',
  'games',
  'wanna',
  'play',
  'gta',
  'lags',
  'meduim',
  'graphics'],
 ['pros',
  'nice',
  'design',
  'quality.speaker',
  'good.battery',
  'goodperformance',
  'extra',
  'ramcons;screen',
  'avgsuper',
  'slow',
  'ram',
  'upto',
  '8gb.for',
  'steal'],
 ['processor', 'slow', 'wastage', 'money', 'time', 'disappointed'],
 ['good',
  'laptop',
  'price',
  'range',
  'satisfied',
  'product',
  'thnk',
  'u',
  'amazon',
  'secured',
  'safe',
  'delivery',
  'product',
  'guys'],
 ['honest',
  'review',
  'week',
  'better',
  'specifications',
  '25k',
  'budget',
  'pros',
  'good',
  'battery',
  'backupfast',
  'charginggood',
  'audio',
  'effectshd',
  'screencons',
  'little',
  'bit',
  'laggycons',
  'matter',
  'laptop',
  'budget'],
 ['laptopperformance',
  'speed',
  'lowit',
  'gta',
  'vice',
  'cityworst',
  'product'],
 ['worth',
  'money',
  'hd',
  'good',
  'simple',
  'gaming',
  'graphics',
  'wanna',
  'smooth',
  'experience',
  'good',
  'daily',
  'life',
  'office',
  'work',
  'end',
  'features'],
 ['worst',
  'experience',
  'amazon',
  'laptop',
  'time',
  'hours',
  'charger',
  'laptop',
  'battery',
  '%',
  'lol',
  'product',
  'policy',
  'product',
  'product'],
 ['good',
  'product',
  'price',
  'purpose',
  'heavy',
  'gaming',
  'multi',
  'taskings',
  'browsing',
  'other',
  'activities',
  'heavy',
  'usage'],
 ['seller',
  'number',
  'hp',
  'laptop',
  'hard',
  'drive',
  'help',
  'warranty',
  'period',
  'hp',
  'company',
  'data',
  'copy',
  'product',
  'key.it',
  'windows',
  'copy.seller',
  'copy',
  'serial',
  'key.so',
  'contact',
  'number'],
 ['good',
  'build',
  'quality',
  'stylish',
  'design',
  'impressive',
  'price',
  'utter',
  'waste',
  'example',
  'chrome',
  'browser',
  'seconds',
  'long',
  'time',
  'long',
  'breaths',
  'laptop',
  'good',
  'laptop',
  'meditation',
  'practice'],
 ['minutes',
  'mins',
  'data',
  'many',
  'attempts',
  'word',
  'pad',
  'hp',
  'amazon',
  'people',
  'kunny',
  'trend',
  'amazonbutnow',
  'hp',
  'laptops',
  'simbony',
  'mobiles',
  'speed',
  'data',
  'yar'],
 ['slow',
  'processing',
  'headache',
  'video',
  'seconds',
  'thing',
  'laptop',
  'impossible'],
 ['best',
  'value',
  'money',
  'laptop',
  'amd',
  'ryzen',
  'processor',
  'gb',
  'amd',
  'vega',
  'good',
  'machine',
  'photo',
  'editing',
  'gaming',
  'screen',
  'dull',
  'bright',
  'specs',
  'suits',
  'college',
  'student',
  'academic',
  'works'],
 ['month',
  'battery',
  'good',
  'look',
  'laptop',
  'basic',
  'work',
  'media',
  'slow',
  'lap'],
 ['processor',
  'slow',
  'ram',
  'slot',
  'gb',
  'ram',
  'total',
  'gb',
  'ram',
  'speed',
  'ok'],
 ['laptop',
  'slow',
  'seconds',
  'app',
  'open',
  'windows',
  'explorer',
  'etc.browsing',
  'slow',
  'ms',
  'excel',
  'slow.i',
  'windows',
  'updates',
  'laptop',
  'multiple',
  'times',
  'fix',
  'issue',
  "won't",
  'product'],
 ['slow',
  'green',
  'ssd',
  'gb',
  'additional',
  'gb',
  'ram',
  'fast',
  'boot',
  'time',
  'os',
  'hdd',
  'acronics',
  'software'],
 ['everytime',
  'pop',
  'boot',
  'device',
  '1st',
  'laptop',
  'worst',
  'experience',
  'boot',
  'disk'],
 ['awesome',
  'laptop',
  'budget.the',
  'laptop',
  'enough',
  'battery',
  'life',
  'average',
  'worried',
  'sound',
  'quality',
  'good',
  'design',
  'impressive',
  'upgradation',
  'future',
  'better',
  'performance',
  'enough',
  'speed',
  'default',
  "configuration.don't",
  'i3',
  '7th',
  'gen',
  'processor'],
 ['windows',
  'minuteswait',
  'logon',
  'screen',
  'minafter',
  'login',
  'icons',
  'wifi',
  'connectivities',
  'browser-',
  'seconds'],
 ['worst',
  'product',
  'july',
  'lots',
  'issues',
  'n',
  'days',
  'screen',
  'black',
  'helpless.customer',
  'care',
  'response',
  'poor'],
 ['brilliant',
  'product',
  'extra',
  'set',
  'ram',
  'better',
  'performance',
  'first',
  'order',
  'day',
  'performance',
  'gift',
  'product',
  'delay',
  'prime',
  'membership',
  'same',
  'seller',
  'delivery',
  'dates'],
 ['laptop',
  'fine',
  'boot',
  'issues',
  'hdd)also',
  'hdd',
  'poor',
  'quality',
  'ssd',
  'laptop'],
 ['battery',
  'good',
  'bad',
  'screen',
  'antiglare',
  'eyes',
  'buy',
  'date',
  'online',
  'warranty',
  'support',
  'software',
  'updates'],
 ['amazon',
  'summer',
  'sale',
  'card',
  'discount).nice',
  'product',
  'range.suitable',
  'daily',
  'usage.if',
  'budget',
  '30k',
  'this.better',
  'intel',
  'i3',
  '7th',
  'bad',
  'thing',
  'full',
  'hd',
  'price',
  'one',
  'full',
  'hd',
  'display'],
 ['best',
  'laptop',
  'good',
  'choice',
  'price',
  'point',
  'movies',
  'n',
  'half',
  'hours'],
 ['product',
  'time',
  'screen',
  'blank',
  'many',
  'times',
  'additional',
  'apps',
  'product',
  "now.i'm",
  'product',
  'last',
  'months',
  'waste'],
 ['months',
  'screen',
  'white',
  'patches',
  'hp',
  'warranty',
  'kind',
  'issues',
  'normal',
  'hp',
  'yrs',
  'warranty',
  'it?dont',
  'such',
  'products'],
 ['bad',
  'laptop',
  'worse',
  'laptop',
  'life',
  'minutes',
  'windows',
  'application',
  'start',
  'minutes',
  'mouse',
  'button',
  'horrible',
  'pathetic',
  'laptop',
  'hp',
  'big',
  'brand',
  'substandard',
  'product',
  'range'],
 ['display',
  'lap',
  '1st',
  'time',
  'issue',
  'display',
  'lap',
  'nd',
  'new',
  'month',
  'same',
  'problem',
  'display',
  'model',
  'worst',
  'hp'],
 ['dear',
  'friends',
  "don't",
  'leptop',
  'hp',
  'laptop',
  'bcz',
  'leptop',
  'month',
  'kan',
  'slow',
  'kind',
  'service',
  'last',
  'month',
  'contact'],
 ['personalcannot',
  'heavy',
  'loads',
  'video',
  'editing',
  'high',
  'end',
  'gamingwe',
  'casual',
  'movie',
  'ms',
  'office',
  'purposes',
  'value',
  'moneystill',
  'problem',
  'product'],
 ['office', 'use', 'games', 'gta', 'v'],
 ['amazon',
  'side',
  'bad',
  'bad',
  'product',
  'hp',
  'laptop',
  'start',
  'problem',
  'just15',
  'day',
  'bad',
  '2nd',
  'hand',
  'product'],
 ['month',
  'complaints',
  'bit',
  'slow',
  'times',
  'other',
  'great',
  'budget',
  'laptop'],
 ['quality',
  'wise',
  'fine',
  'performance',
  'bad',
  'output',
  "i'm",
  'tab',
  'time',
  'satisfy',
  'performance'],
 ['laptop',
  'microsoft',
  'windows',
  'os',
  '.',
  'os',
  'manually',
  'hp',
  'default',
  'year',
  'warranty',
  'laptop',
  'bad',
  'service'],
 ['9th',
  'june',
  'right',
  'click',
  'charger',
  'charger',
  'wrost',
  'experience',
  'amazon'],
 ['nice', 'worth'],
 ['hdd',
  'problem',
  'warranty',
  'hdd',
  'additional',
  'gb',
  'crucial',
  'ddr4',
  'ram',
  'excellent',
  'display',
  'quality',
  'average',
  'battery',
  'backup',
  'hours',
  'medium',
  'demanding',
  'games',
  'playable',
  'high',
  'set.good',
  'autocad',
  'daily',
  'tasks'],
 ['best',
  'laptop',
  'range',
  '25k',
  'speed',
  'new',
  'ryzen',
  'processor',
  'powerful'],
 ['biggest',
  'mistake',
  'product',
  'lenovo',
  'other',
  'brand',
  'refund',
  'request',
  'worst',
  'laptop',
  'employees',
  'usage',
  'pieces',
  'disappointed'],
 ['time', 'apps', 'normal', 'overall', 'nice', 'product', 'range', 'price'],
 ['battery',
  'backup',
  'hour',
  'description',
  'many',
  'times',
  'amazon',
  'product',
  'value',
  'money',
  'boot',
  'time',
  'laptop',
  'look',
  'body',
  'poor',
  'rs-24990'],
 ['worth',
  'buying',
  'display',
  'good',
  'sound',
  'quality',
  'good',
  'amazon',
  'choice',
  'perfect'],
 ['design',
  'ok',
  'lightweight',
  'bt',
  'slow',
  'laptop',
  'atleast',
  'particular',
  'peice',
  'bt',
  'dissatisfied',
  'performance',
  'good',
  'day',
  'day',
  'usage'],
 ['pathetic',
  'product',
  'hp',
  'dustbin',
  'usable',
  'crap',
  'laptop',
  'hp',
  'kinds',
  'laptop'],
 ['value', 'money', 'nice', 'performance', 'gb', 'ram'],
 ['good',
  'reviews',
  'system',
  'slow',
  'os',
  'weeks',
  'lot',
  'issues',
  'better'],
 ['processor', 'ok', 'battery', 'hrs.i', 'more', 'battery', 'backup'],
 ['dam',
  'slow',
  'worst',
  'product',
  'amazon',
  'first',
  'time',
  'amazon',
  'reviews'],
 ['laptop',
  'operation',
  'slow',
  'replacment',
  'options.fake',
  'information',
  'description'],
 ['power', 'button', 'able', 'fan', 'sound', 'high', 'silencer'],
 ['nice', 'product', 'other', 'price', 'more'],
 ['25k',
  'diwali',
  'sale',
  'nice',
  'laptop',
  'casual',
  'little',
  'bit',
  'heavy',
  'usage',
  'face',
  'problem',
  'battery',
  'main',
  'highlight',
  'issues'],
 ['price',
  'decent',
  'laptop',
  'ram',
  'minimum',
  'gb',
  'laptop',
  'slow.upgraded',
  'crucial',
  'gb',
  'ddr4',
  'ram',
  'performance',
  'better.suitable',
  'everyday',
  'laptop'],
 ['worst',
  'product',
  'life',
  '22k',
  'pathetic',
  'slow',
  'laptop',
  'laptop',
  'slow',
  'able'],
 ['performance',
  'decent',
  'daily',
  'office',
  'task',
  'light',
  'little',
  'bit',
  'slow',
  'hp',
  'i3',
  'same',
  'range',
  'better',
  'mine',
  'laptop',
  'slow'],
 ['good',
  'battery',
  'longer',
  'hours',
  'screen',
  'quality',
  'nice.system',
  'improvement'],
 ['superb',
  'quality',
  'product',
  'good',
  'images',
  'hours',
  'prime',
  'customer',
  'functions',
  'specifications',
  'same',
  'site',
  'best',
  'buy',
  'summer',
  'sale'],
 ['more', 'hrs', 'battery', 'life.slow', 'processing', 'speed'],
 ['hours',
  'battery',
  'life',
  'windows',
  'updates',
  'first',
  'try',
  'web',
  'browsing',
  'fast',
  'other',
  'applications',
  'slow'],
 ['laptop',
  'screen',
  'discoloration',
  'manufacturing',
  'defect',
  'amazon',
  'replacement'],
 ['nice',
  'product',
  'ryzen',
  'better',
  'intel',
  'core',
  'i3',
  '7th',
  'generation',
  'amd',
  'vega',
  'graphics',
  'battery',
  'maximum',
  'run',
  'hours',
  'full',
  'charge',
  'mild',
  'browsing.sound',
  'quality',
  'different',
  'ok.display',
  'quality',
  'good'],
 ['laptop',
  'opening',
  'laptop',
  'wifi',
  'connectivity',
  'issue',
  'post',
  'network',
  'reset',
  'update',
  'purchase'],
 ['%',
  'discount',
  'gb',
  'ddr4',
  'ram',
  'product',
  'ready',
  '25k',
  'rupees',
  'intel',
  'i5',
  'performance',
  'same',
  'spec',
  'new',
  'ryzen',
  'cpu',
  'products',
  'worth'],
 ['computer',
  'days',
  'months',
  'amount',
  'effort',
  'hp',
  'service',
  'center',
  'hp',
  'problem',
  'business',
  'laptop'],
 ['good', 'product', 'price', 'use', 'basic', 'work', 'students'],
 ['slow', 'offen', 'hangingi', 'din', 'user', 'manual'],
 ['excellent', 'product', 'hp', 'gb', 'gb', 'ram', 'laptop', 'extra', 'ram'],
 ['battery', 'life', 'hours', 'pathetic', 'more', 'worth'],
 ['nyc',
  'laptop',
  'value',
  'money',
  'bcoz',
  'maine',
  'isko',
  'ek',
  'mahina',
  'use',
  'krne',
  'ke',
  'baad',
  'bol',
  'raha',
  'hu',
  'maine',
  'isko',
  'tha',
  'worth',
  'next',
  'month',
  'ismay',
  'gb',
  'ssd',
  'gb',
  'ram',
  'bhi',
  'upgrade',
  'karungaaa',
  'nyc',
  'perfornance',
  'battery',
  'life',
  'nyc',
  'product'],
 ['delivery',
  'good',
  'day',
  'display',
  'quality',
  'average',
  'battery',
  'performance',
  'worst',
  'movie',
  'fastly.processor',
  'performance',
  'good',
  'quick',
  'accessing'],
 ['product',
  'properly.just',
  'minutes',
  'bottom',
  'operating',
  'system',
  'single',
  'photos',
  'data',
  'store',
  'product',
  'third',
  'class',
  'product'],
 ['good',
  'basic',
  'needs',
  'internet',
  'surfing',
  'movies',
  'good',
  'buy',
  'price'],
 ['best',
  'laptop',
  'history',
  'hp',
  'kind',
  'laptop',
  '21k',
  'performance',
  'little',
  'slower'],
 ['laptop',
  'good',
  'slow',
  'speed',
  'professional',
  'games',
  'money',
  '28k',
  'more',
  'm'],
 ['worst', 'laptop', 'don', 't'],
 ['random', 'office', 'work', 'okey'],
 ['bakwaas', 'hai', 'ji'],
 ['laptop', 'slow', 'ishtar', 'amd'],
 ['price',
  'loptop',
  'asphalt',
  'air',
  'bone',
  'game',
  'frame',
  'drops',
  'problem',
  'pubg',
  'multiple',
  'tasks',
  'memory'],
 ['product',
  'many',
  'times',
  'disk',
  '%',
  'memory',
  'first',
  'poor',
  'experience',
  'amazon'],
 ['poor',
  'performance',
  'several',
  'time',
  'new',
  'product',
  'manufacturing',
  'defect',
  'poor',
  'value',
  'money'],
 ['useles', 'product', 'lot'],
 ['lot',
  'patience',
  'time',
  'laptop',
  'dead',
  'slow',
  'times',
  'lot',
  'time',
  'waste',
  'money'],
 ['defect',
  'adapter',
  'replacement',
  'replacement',
  'laptop',
  'local',
  'packing',
  'hp',
  'box',
  'amazon',
  'packaging',
  'product'],
 ['good', 'laptop', 'price', 'diwali', 'cheep', 'configuration', 'happy'],
 ['plain', 'language', 'movie', 'song', 'good', 'c++', 'programmings'],
 ['best',
  'laptop',
  'good',
  'looks',
  'great',
  'battery',
  'nice',
  'great',
  'fast',
  'delivery'],
 ['best', 'students', 'normal', 'use', 'laptop'],
 ['slow',
  'processor',
  'price',
  'less',
  'intel',
  'processor',
  '3k',
  'intel',
  'type',
  'life',
  'time',
  'headack'],
 ['seller',
  'sensible',
  'laptop',
  'sleeve',
  'bag',
  'laptop',
  'good',
  'price',
  'mere',
  'expenditure',
  '600rs',
  'big',
  'loss',
  'seller'],
 ['nice', 'laptop', 'amazing', 'price'],
 ['days', 'mark', 'condition', 'good', 'laptop', 'deadslow'],
 ['amazing',
  'deal',
  'battery',
  'backup-',
  'hoursdisplay',
  'goodperformance',
  'smoothin',
  'build',
  'windows',
  'weight'],
 ['product',
  'month',
  'warranty',
  'year',
  'warranty',
  'issue',
  'hp',
  'store',
  'wrong',
  'invoice'],
 ['good',
  'day',
  'day',
  'use',
  'mild',
  'editing',
  'programming',
  'work',
  'ram'],
 ['delivery',
  'fast',
  'first',
  'day',
  'display',
  'problem',
  'slow',
  'laptop',
  'minimum',
  'overall',
  'bad',
  'experience',
  'laptop',
  'worst',
  'laptop',
  'basic',
  'use'],
 ['good',
  'college',
  'students',
  'home',
  'use',
  'movies',
  'office',
  'work',
  'heavy',
  'games',
  'bit',
  'laggy',
  'price',
  'performance',
  'ratio',
  'great'],
 ['satisfied', 'purchase', 'only', 'issue', 'quality', 'purpose'],
 ['acer',
  'aspire',
  'v5',
  'intel',
  'i3',
  'laptop',
  'pentium',
  'gold',
  'processor',
  'same',
  'lesser',
  'l3',
  'cache',
  'memory',
  'mb',
  'heating',
  'other',
  'issues',
  'ssd',
  'requirement',
  'day',
  'day',
  'browsing',
  'videos',
  'good',
  'laptop',
  'price.good',
  'price',
  'old',
  'laptop',
  'card',
  'discount',
  'icici',
  'diwali',
  'sale'],
 ['few',
  'days',
  'love',
  'product',
  'light',
  'large',
  'fonts',
  'keypad',
  'windows',
  'easy'],
 ['initial',
  'impression',
  'excellent',
  'light',
  'weight',
  'thin',
  'friendly.super',
  'fast',
  'booting',
  'ssd',
  'laptop',
  'last',
  'long.lets',
  'corse',
  'time'],
 ['item', 'super', 'fast', 'delivery', 'laptop', 'few', 'weeks', 'use'],
 ['fast', 'performancewosrt', 'display'],
 [''],
 ['great', 'product', 'great', 'price'],
 ['good', 'buy'],
 ['slim',
  'light',
  'weight',
  'traveling.good',
  'battery',
  'time',
  'min',
  'office',
  'best'],
 ['fast', 'good', 'regular', 'office', 'home', 'work'],
 ['laptop',
  'decent',
  'display',
  'boots',
  'price',
  'microsoft',
  'office',
  'listing',
  'trial',
  'version',
  'vendor',
  'microsoft',
  'office',
  'available',
  'hints',
  'trial',
  'version.when',
  'amazon',
  'customer',
  'support',
  'product',
  'trial',
  'user',
  'answer',
  'products',
  'user',
  'answers',
  'appropriate2',
  'license',
  'complete',
  'cause',
  'deceptive',
  'advertisements',
  'vendor'],
 ['today',
  'basic',
  'set',
  'original',
  'windows',
  'ms',
  'office',
  '2019(life',
  'time).system',
  'terms',
  'booting.those',
  'ms',
  'office',
  'days',
  'ms',
  'office',
  'own',
  'outlook',
  'gmail',
  'yahoo',
  'side',
  'bottom',
  'search',
  'box',
  'type',
  'excel',
  'excel.3',
  'outlook',
  'username',
  'password',
  'having.4',
  'life',
  'time',
  'office',
  'life',
  'time',
  'daysystem',
  'superb',
  'fast',
  'terms',
  'ms',
  'office',
  'gc',
  'ie',
  'system',
  'bios',
  'lag',
  'speed',
  'first',
  'time',
  'updatewhen',
  'right',
  'bottom',
  'hp',
  'page',
  'updates',
  'important',
  'update',
  'bios',
  'bluetooth',
  'lan',
  'system',
  'slow',
  'update'],
 ['months',
  'time',
  'hard',
  'disk',
  'off.laptop',
  'slow',
  'expense',
  'new',
  'hard',
  'disk.amazon',
  'larger',
  'period',
  'return',
  'window',
  'sensitive',
  'products',
  'loss',
  'laptop',
  'seller.better',
  'offline',
  'stores',
  'croma',
  'exclusive',
  'dealer',
  'brand'],
 ['gb',
  'ram',
  'gb',
  'ssd',
  'homems',
  'office',
  'home',
  'student',
  'lifetime',
  'word',
  'excel',
  'pp',
  'onenote',
  'ms',
  'office',
  'month',
  'above',
  'features',
  'good',
  'price',
  'coding',
  'browsingthe',
  'boot',
  'time',
  'fast',
  'thanks',
  'ssd',
  'space',
  'unnecessary',
  'files',
  'pcvery',
  'lightweightbattery',
  'backup',
  'goodvideo',
  'quality',
  'good',
  'graphicsnot',
  'great',
  'gamingmy',
  'verdict',
  'pc',
  'coding',
  'browsing',
  'stuff',
  'one',
  'best',
  'budget-',
  'lags',
  'good',
  'external',
  'drive',
  'hdd',
  'stuff',
  'movies',
  'songs',
  'screen',
  'quality',
  'decentbattery',
  'life',
  'goodlight',
  'weight'],
 ['laptop',
  'sleek',
  'lightweight',
  'product',
  'startup',
  'post',
  'slow',
  'windows',
  'gb',
  'ram',
  'unlocking',
  'laptop',
  'post',
  'startup',
  'mins',
  'slow',
  'laptop',
  'fine',
  'browsing',
  'more',
  'work',
  'heavy',
  'excel',
  'sheets',
  'games',
  'web',
  'pages',
  'time',
  'lag',
  'seconds',
  'sound',
  'quality',
  'better',
  'other',
  'laptops',
  'price',
  'fine',
  'product',
  'browsing',
  'more'],
 ['reviews',
  'laptop',
  'amazon',
  'return',
  'step',
  'solution',
  'laptop',
  'laptop',
  'tad',
  'bit',
  'speed',
  'first',
  'generation',
  'computers',
  'world.now',
  'laptop.i',
  'amazon',
  'inr',
  'utter',
  'disappointment',
  'product'],
 ['superb',
  'laptop',
  'win10',
  'ms',
  'office',
  'gb',
  'ram/',
  'gb',
  'ssd',
  'quick',
  'boot',
  'lag',
  'dropbox',
  'gb',
  'space',
  'free',
  'drive',
  'gb',
  'space',
  'extended',
  'warranty',
  'amazson',
  'optional',
  'pendrive',
  'gb',
  'documents',
  'exchange',
  'rs.23,236',
  'rs.4760',
  'old',
  'sony',
  'viao',
  'sbi',
  'card',
  'discount',
  'happy',
  'purchase',
  'good',
  'screen',
  'battery',
  'backup',
  'miss',
  'backlit',
  'keyboard',
  'great'],
 ['hp',
  'laptop',
  'inch',
  'light',
  'weight',
  'genuine',
  'softwares',
  'perfect',
  'combination',
  'search',
  'decent',
  'laptop.after',
  'couple',
  'days',
  'working',
  'pros:1',
  'windows',
  'ms',
  'office',
  'genuine2',
  'light',
  'weight',
  'handy',
  'island',
  'keys',
  'keyboard',
  'lot',
  'typing',
  'daily',
  'core',
  'smoothly4',
  'alphabets',
  'broader',
  'font',
  'size5',
  'decent',
  'display',
  'webcam',
  'battery',
  'life',
  'hcons:1',
  'smokey',
  'gray',
  'colour',
  'lappy',
  'hopeless',
  'same',
  'grounds',
  'jet',
  'black',
  'excellent',
  'option',
  'unavailable',
  'moment',
  'amazon',
  'present',
  'configuration2',
  'performance',
  'bit',
  'slower',
  'side',
  'configuration',
  'addition',
  'gb',
  'ram',
  'serious',
  'problem3',
  'hardware',
  'light',
  'weight',
  'fragile',
  'low',
  'quality4',
  'heavy',
  'gamersverdict',
  'value',
  'money',
  'stars',
  'design',
  'lappy',
  'hardware',
  'perfect',
  'companion',
  'cost'],
 ['first',
  'days',
  'mouse',
  'laptop',
  'point',
  'hp',
  'quality',
  'laptop',
  'screen',
  'degree',
  'original',
  'e',
  'high',
  'high',
  'discount',
  'actual',
  'price',
  'happy',
  'quality'],
 ['hp',
  'products',
  'service',
  'waste',
  'faulty',
  'part',
  'days',
  'further',
  'updates',
  'experience'],
 ['laptop',
  'months',
  'horrible',
  'beginning.the',
  'speed',
  'slow',
  'secs',
  'small',
  'size',
  'file',
  'hp',
  'much',
  'help',
  'screen',
  'session.i',
  'friend',
  'laptop',
  'speed',
  'unwanted',
  'unnecessary',
  'software',
  'mcafee',
  'windows',
  'defender',
  'unwanted',
  'game',
  'software',
  'fragmentation',
  'order',
  'space',
  'holes',
  'memory.it',
  'able',
  'software',
  'quick',
  'system',
  'performance'],
 ['best',
  'laptop',
  'price',
  'range',
  'confusion',
  'ms',
  'office',
  'trail',
  'version',
  'laptop',
  'days',
  'ms',
  'office',
  'student',
  'version',
  'life',
  'time',
  'free.just'],
 ['thing',
  'ad',
  'microsoft',
  'office',
  'free',
  'silly',
  'month',
  'trial',
  'worth',
  'better',
  'options',
  'available',
  'lifetime',
  'mso',
  'order',
  'return'],
 ['software',
  'professional',
  'product',
  'light',
  'weight',
  'faster',
  'booting',
  'time',
  'camera',
  'quality',
  'poor',
  'days',
  'own',
  'updating',
  'bios',
  'hp',
  'reasons',
  'same',
  'time',
  'os',
  'windows',
  'surprise',
  'features',
  'mobile',
  'instant',
  'basis',
  'several',
  'attempts',
  'surprising',
  'windows',
  'commercial',
  'nature',
  'cunning',
  'features',
  'reasons',
  'contact',
  'wi',
  'fi',
  'feature',
  'regular',
  'basis',
  'default',
  'one',
  'ms',
  'office',
  'microsoft',
  'computer',
  'friends',
  'cd',
  'fast',
  'light',
  'jet',
  'black',
  'colour',
  'attractive',
  'day',
  'good',
  'condition',
  'bag',
  'free'],
 ['nice',
  'laptop',
  'boots',
  'less',
  'quality',
  'last',
  'more',
  'hours',
  'medium',
  'brightness',
  'average',
  'usage',
  'sound',
  'moneycons:-cheap',
  'plastic',
  'body',
  'scared',
  'anywhere.-in',
  'less',
  'month',
  'print',
  'keys',
  'poor',
  'quality',
  'print.-webcam',
  'quality',
  'pathetic',
  'vga',
  'camera',
  'adapter',
  'heavy',
  '%',
  'weight',
  'laptop',
  'purpose',
  'portability'],
 ['poor',
  'qualitybuild',
  'quality',
  'poor',
  'poor',
  'plastickeyboard',
  'softperformance',
  'brand',
  'poorif',
  '27k',
  '29k',
  'laptop',
  'higher',
  'range',
  'laptop',
  'good',
  'full',
  'hd',
  'display',
  'ips',
  'best.if',
  'normal',
  'work',
  'lower',
  'range',
  'less',
  'ram',
  'keyboard',
  'display',
  'jerk'],
 ['pro',
  'exchange',
  'lappy',
  'i3',
  '7th',
  'gen',
  'gb',
  'ssd',
  'gb',
  'ram',
  'original',
  'win10',
  'ms',
  'offic',
  'weight',
  'kg',
  'price',
  'worthy',
  'purchase',
  'looks',
  'laptop',
  'good.cons',
  'poor',
  'web',
  'cam',
  'screen',
  'quality',
  'good',
  'avg',
  'backlight',
  'keyboard',
  'speaker',
  'bass',
  'much.overall',
  'price',
  'hardware',
  'specs',
  'm',
  'happy',
  'photoshop',
  'video',
  'editor',
  'good',
  'student',
  'office',
  'people',
  'asus',
  'x200ma',
  'hp',
  'configuration',
  'hp',
  'boots'],
 ['hours',
  'laptop',
  'bit',
  'handy',
  'cool',
  'sleek',
  'beautiful',
  'light',
  'battery',
  'charges',
  'quick',
  'tons',
  'good',
  'things',
  'gb',
  'ssd',
  'gb',
  'ram',
  'main',
  'highlights',
  'only',
  'thing',
  'better',
  'screen',
  'under',
  'big',
  'deal',
  'hd+',
  'display',
  'good',
  'enough.thumbs',
  'hp',
  'amazon'],
 ['new',
  'laptop',
  'day',
  'date',
  'purchase',
  'slow',
  'performance',
  'hp',
  'many',
  'times',
  'hp',
  'thry',
  'window',
  'rs',
  'cloud',
  'recovery',
  'service',
  'warranty',
  'wtf',
  'worst',
  'experience',
  'hp',
  'problem',
  '1st',
  'second',
  'day',
  'other',
  'wise',
  'u',
  'irritated',
  'hp',
  'service'],
 ['laptop',
  'reason',
  'ms',
  'office',
  'procedure',
  'ms',
  'office',
  'hp',
  'customer',
  'care',
  'remote',
  'connection',
  'it.its',
  'weeks',
  'laptop',
  'hp',
  'customer',
  'min+',
  'duration',
  'ms',
  'office',
  'yet.terrible',
  'experience',
  'brand',
  'new',
  'laptop',
  'hp'],
 ['thin',
  'light',
  'weight',
  'laptop',
  'good',
  'performance',
  'good',
  'windows',
  'work',
  'set',
  'automatic',
  'easy',
  'display',
  'great',
  'price',
  'point',
  'acceptable',
  'good',
  'buy'],
 ['price',
  'best',
  'ssd',
  'laptop',
  'laptop',
  'hdd',
  'naive',
  'tons',
  'storage',
  'external',
  'drive',
  'screen',
  'decent',
  'better',
  'full',
  'hd',
  'display',
  'battery',
  'life',
  'poor',
  'gaming',
  'session',
  'battery',
  'low',
  'laptop',
  'light',
  'comfortable',
  'camera',
  'poor',
  'least'],
 ['display',
  'good',
  'sound',
  'quality',
  'superb',
  'few',
  'seconds',
  'boot',
  'quick',
  'ssd',
  'biggest',
  'plus',
  'point',
  'battery',
  'life',
  'requirements',
  'work',
  'entertainment',
  'purpose',
  'go',
  'product',
  'price',
  'range'],
 ['excellent',
  'value',
  'money',
  'fast',
  'boot',
  'thanks',
  'ssd',
  'i3',
  'processor',
  'gb',
  'ram',
  'gb',
  'ssd',
  'win',
  'os',
  'ms',
  'office',
  'home',
  'student',
  'great',
  'deal'],
 ['unbelievable',
  'laptop',
  'price',
  'point',
  'match',
  'available',
  'sleek',
  'light',
  'weight',
  'point',
  'large',
  'sum',
  'money',
  'other',
  'brand',
  'best',
  'product',
  'price'],
 ['cons',
  'day',
  'old',
  'laptop',
  'signature',
  'slow',
  'processing',
  'more',
  'time',
  'usual',
  'pc',
  'feed',
  'input.display',
  'quality',
  'i',
  'm',
  'bit',
  'worried',
  'display',
  'quality',
  'gentle',
  'press',
  'back',
  'display',
  'display',
  'merge',
  'color',
  'spot',
  'pressed).pros',
  'life',
  'quiet',
  'good',
  'upto',
  'hours',
  'hoursspeaker',
  'quality',
  'goodlight',
  'weight',
  'n',
  'compact',
  'sizei',
  'star',
  'days',
  'usage'],
 ['quality',
  'great',
  'super',
  'thin',
  'laptop',
  'day',
  'andpros',
  'ssd',
  'm.2',
  'nvme',
  'pcie',
  'type8',
  'gb',
  'ram',
  'ddr4core',
  'i3',
  '7th',
  'gen',
  'mb',
  'cache3',
  'cell',
  'batterysuper',
  'thin',
  'body',
  'lightweightcons',
  'fingerprint',
  'mandatory',
  'everyone)no',
  'type',
  'c',
  'port',
  'few',
  'people',
  'type',
  'c',
  'c',
  'cable',
  'common)lookwise',
  'simple.recommend'],
 ['product',
  'i3',
  'laptop',
  'numbers',
  'speed',
  'poor',
  'security',
  'window',
  'visible',
  'window',
  'screen',
  'products'],
 ['laptop',
  'movies',
  'day',
  'day',
  'work',
  'good',
  'fast',
  'window',
  'gb',
  'ram',
  '256ssd',
  'stuff',
  'heavy',
  'usage',
  'simple'],
 ['new',
  'model',
  'hp',
  'deal',
  'great',
  'indian',
  'festival',
  'issues',
  'warranty',
  'windows',
  'office',
  'original',
  'laptop',
  'boots',
  'ssd',
  'laptop',
  'delicate',
  'purposes',
  'office',
  'work',
  'movies',
  'youtube',
  'music',
  'perfect',
  'choice',
  'normal',
  'hdd',
  'laptops',
  'slower',
  'mechanical',
  'functionality.i',
  'review',
  'days',
  'usage'],
 ['model',
  'waste',
  'money',
  'much',
  'expectation',
  'things',
  'good',
  'one',
  'light',
  'weight',
  'other',
  'battery',
  'life'],
 ['laptop',
  'good',
  'battery',
  'life',
  'average',
  'hours',
  'light',
  'laptop',
  'premium',
  'processing',
  'good',
  'ideal',
  'casual',
  'use',
  'problem',
  'web',
  'browsing',
  'movies',
  'documents',
  'good',
  'one',
  'course',
  'value',
  'money'],
 ['lots',
  'positive',
  'negative',
  'reviews',
  'one',
  'battery',
  'good',
  'screen',
  'display',
  'good',
  'easy',
  'small',
  'size',
  'lightweight',
  'ssd',
  'satisfied'],
 ['sysytem',
  'little',
  'bit',
  'slow',
  'reboot',
  'tine',
  'time.body',
  'quality',
  'soft',
  'firm',
  'dell.one',
  'care',
  'battery',
  'life',
  'good',
  'sound',
  'good.but',
  'price',
  'product',
  'ok'],
 ['good',
  'product',
  'slow',
  'ram',
  'gb',
  'slot',
  'lots',
  'issues',
  'slowness',
  'hp',
  'technician',
  'look'],
 ['nice',
  'laptop.all',
  'functions',
  'available',
  'ms',
  'office',
  'lifetime',
  'validity',
  'sound',
  'quality',
  'superb',
  'hp',
  'dell',
  'laptop.simple',
  'start',
  'home',
  'use',
  'normal',
  'routine',
  'work',
  'best',
  'laptop'],
 ['microsoft',
  'office',
  'excel',
  'word',
  'powerpoint)is',
  'lifetime',
  'valid',
  'office',
  'first-',
  'microsoft',
  'outlook',
  'login',
  'only',
  'trial',
  'version.screen',
  'average',
  'speed',
  'excellent',
  'boots',
  'seconds',
  'light',
  'weight',
  'highlight'],
 ['good',
  'product',
  'thin',
  'lightweight',
  'battery',
  'backup',
  'good',
  'review',
  'product',
  'more',
  'weeks'],
 ['awesome',
  'deal',
  'amazon',
  'great',
  'indian',
  'sale',
  'laptop',
  'compact',
  'awesome',
  'performance',
  'price',
  'point',
  'inclusion',
  'ssd',
  'attraction',
  'boot',
  'time',
  'secs'],
 ['ms',
  'office',
  'lifetime',
  'available',
  'orginal',
  'i.e',
  'full',
  'security)portable',
  'light',
  'weight',
  'average',
  'screen',
  'quality'],
 ['light',
  'weight',
  'friendly',
  'laptop',
  'good',
  'memory',
  'space',
  'professionals',
  'basic',
  'applications',
  'such',
  'ms',
  'office',
  'system',
  'college',
  'friendly',
  'smooth',
  'keyboard',
  'video',
  'quality',
  'good'],
 ['slow',
  'regular',
  'student',
  'work',
  't',
  'huge',
  'applications',
  'hp',
  'service',
  'bad',
  'displays',
  'site',
  'warranty',
  'service',
  'center',
  'don',
  't',
  'product'],
 ['laptop', 'slow', 'bad', 'laptop', 'life', 'time', 'limit', 'money'],
 ['laptop', 'multiple', 'programs', 'product', 'perfect'],
 ['seller', 'doest', 'invoice', 'packet', 'authenticity', 'product'],
 ['excellent',
  'entry',
  'level',
  'notebook',
  'ssd',
  'faster',
  'sata',
  'build',
  'okay'],
 ['charger',
  'laptop',
  'helpline',
  'complain',
  'service',
  'available',
  'website',
  'hp',
  'response'],
 ['pros',
  'light',
  'weight',
  'good',
  'battery',
  'life',
  'gb',
  'ram',
  'tb',
  'hddcons',
  'processor',
  'speed',
  'slower',
  'expected.remark',
  'value',
  'money'],
 ['system',
  'slow',
  'lot',
  'time',
  'boot.this',
  'basic',
  'usage',
  'laptop',
  'worth',
  'money'],
 ['product',
  'mso',
  'hp',
  'online',
  'session',
  'same',
  'thing',
  'product',
  'mso',
  'installed',
  'lot',
  'issues',
  'service',
  'team',
  'dell',
  'better',
  'service'],
 ['vert',
  'worst',
  'service',
  'hp',
  'replacement',
  'bad',
  'bad',
  'bad',
  'hp',
  'qty',
  'least',
  'bother',
  'frm',
  'retailpc',
  'slow'],
 ['light',
  'weight',
  'stylish',
  'good',
  'battery',
  'life',
  'issue',
  'little',
  'bit',
  'slow'],
 ['new',
  'hp',
  'laptop',
  'slow',
  'applications',
  'slow',
  'years',
  'ram',
  'gb',
  'application',
  'word',
  'slow'],
 ['gb',
  'ram',
  'ssd',
  'hd',
  'results',
  'laptop',
  'fast',
  'light',
  'weight',
  'easy',
  'convenient',
  'frequent',
  'travellers',
  'speakers',
  'good',
  'price',
  'range.value',
  'money',
  '28k',
  'sbi',
  'card',
  'discount'],
 ['light', 'weight', 'laptop', 'routine', 'use', 'windows', 'ms', 'office'],
 ['light',
  'weight',
  'portable',
  'laptopsince',
  'ssd',
  'technology',
  'system',
  'lag',
  'multiple',
  'applications5',
  'hrs',
  'battery',
  'life',
  'multi',
  'processing'],
 ['premium',
  'handy',
  'light',
  'weight',
  'screen',
  'fabulous',
  'mouse',
  'pad',
  'soft',
  'touch',
  'love',
  'machine',
  'opt',
  'office',
  'h&s',
  'extra',
  'laptop'],
 ['product',
  'good',
  'value',
  'money',
  'reasonable',
  'price.however',
  'vendor',
  'didn',
  't',
  'ms',
  'office',
  'home',
  'edition',
  'license',
  'key',
  'vendor',
  'same',
  'earliest'],
 ['days',
  'laptop',
  'local',
  'repair',
  'laptop',
  'amazon',
  'product',
  'igot',
  'defects',
  'photo',
  'laptop'],
 ['happy',
  'performance',
  'laptop',
  'lightweight',
  'good',
  'speed',
  'worth',
  'money'],
 ['angles',
  'worst.option',
  'nvme',
  'ssd',
  'good',
  'like.overall',
  'performance',
  'good',
  'better',
  'price',
  'range'],
 ['charger',
  'system',
  'slow',
  'battery',
  'backupnot',
  'technician',
  'money',
  'laptop'],
 ['price',
  'good',
  'real',
  'lightweight',
  'decent',
  'battery',
  'screen',
  'good',
  'option',
  'option',
  'basic',
  'computing',
  'browsing',
  'needs'],
 ['good',
  'laptop',
  'gb',
  'ram',
  'ssd',
  'fast',
  'smoother',
  'hd',
  'display',
  'battery',
  'backup',
  'upto',
  'hrs',
  'good',
  'students',
  'gaming'],
 ['battery', 'goodsystem', 'many', 'times'],
 ['good', 'buy', 'requirement'],
 ['good', 'pieceram'],
 ['screen',
  'good',
  'laptop',
  'hr',
  'talk',
  'time',
  'becouse',
  'light',
  'weight'],
 ...]
In [69]:
import gensim
from gensim import corpora
In [70]:
dictionary = corpora.Dictionary(tokenised_corpus)
In [71]:
len(dictionary)
Out[71]:
4909
In [ ]: